Skip to content

RecurringAppointmentInput

Payload for a recurring appointment

Fields

id · ID · The unique identifier of the recurring appointment
join_all · Boolean · If true, all appointments will be joined into one appointment
repeat_interval · String · Options are ["Weekly", "Biweekly", "Monthly", or "Every 4 Weeks"]
repeat_times · String · Must be a positive number. For example, the following values are valid: "2", "10", "25", "52"

Used By

Definition

"""
Payload for a recurring appointment
"""
input RecurringAppointmentInput {
"""
The unique identifier of the recurring appointment
"""
id: ID
"""
If true, all appointments will be joined into one appointment
"""
join_all: Boolean = false
"""
Options are ["Weekly", "Biweekly", "Monthly", or "Every 4 Weeks"]
"""
repeat_interval: String
"""
Must be a positive number. For example, the following values are valid: "2", "10", "25", "52"
"""
repeat_times: String
}