An appointment slot time with start and end.

AppointmentSlotTime

interface AppointmentSlotTime {
    endTime: string;
    startTime: string;
}

Properties

Properties

endTime: string

The end timestamp of the appointment in UTC.

AppointmentSlotTime

startTime: string

The start timestamp of the appointment in UTC.

AppointmentSlotTime