Skip to content

AppointmentRequestSlotType

An range of time requested for an appointment request

Fields

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

Used By

Definition

"""
An range of time requested for an appointment request
"""
type AppointmentRequestSlotType {
"""
The identifier of the parent appointment request
"""
appointment_request_id: ID!
"""
The unique identifier of the appointment request slot
"""
id: ID!
"""
The end time of the appointment request slot
"""
slot_end: ISO8601DateTime!
"""
The start time of the appointment request slot
"""
slot_start: ISO8601DateTime!
}