Skip to content

AppointmentTypeCredit

An object containing information the clients' remaining credit for a given appointment type

Fields

appointment_type · AppointmentType · The Appointment Type connected to the credit
appointment_type_id · String · the id of the appointment type
form_id · String · An Alias of ID that makes creating the form easier
id · ID · The unique identifier of the credit
quantity · String · The quantity of the credit
user_id · Int · The id of the holder of the credit

Used By

Definition

"""
An object containing information the clients' remaining credit for a given appointment type
"""
type AppointmentTypeCredit {
"""
The Appointment Type connected to the credit
"""
appointment_type: AppointmentType
"""
the id of the appointment type
"""
appointment_type_id: String
"""
An Alias of ID that makes creating the form easier
"""
form_id: String
"""
The unique identifier of the credit
"""
id: ID
"""
The quantity of the credit
"""
quantity: String
"""
The id of the holder of the credit
"""
user_id: Int
}