Skip to content

AppointmentRequestSlotInput

Payload for a time slot for an appointment request

Fields

id · ID · The unique identifier of the appointment request slot
slot_start · ISO8601DateTime! · required · The start time of the requested appointment availability
slot_end · ISO8601DateTime! · required · The end time of the requested appointment availability

Used By

Definition

"""
Payload for a time slot for an appointment request
"""
input AppointmentRequestSlotInput {
"""
The unique identifier of the appointment request slot
"""
id: ID
"""
The start time of the requested appointment availability
"""
slot_start: ISO8601DateTime!
"""
The end time of the requested appointment availability
"""
slot_end: ISO8601DateTime!
}