The self ship appointment time slots availability and an expiration date for which the slots can be scheduled.

SelfShipAppointmentSlotsAvailability

interface SelfShipAppointmentSlotsAvailability {
    expiresAt?: string;
    slots?: AppointmentSlot[];
}

Properties

Properties

expiresAt?: string

The time at which the self ship appointment slot expires. In ISO 8601 datetime format.

SelfShipAppointmentSlotsAvailability

slots?: AppointmentSlot[]

A list of appointment slots.

SelfShipAppointmentSlotsAvailability