Skip to content

OfferingInclude

Offering Include

Fields

appointment_type_id · ID · id of related appointment type
created_at · String! · required · created at
expires_in · String · expires in
form_id · String · form id
id · ID! · required · The unique identifier of the offering include.
is_repeating · Boolean! · required · whether or not the offering_include (appointment type) should be recurring
offering_id · ID · id of related offering
quantity · String · quantity of appointments in package
required_appointment_type · Boolean! · required · whether or not the offering book
updated_at · String! · required · updated at

Used By

Definition

"""
Offering Include
"""
type OfferingInclude {
"""
appointment type
"""
appointment_type: AppointmentType
"""
id of related appointment type
"""
appointment_type_id: ID
"""
created at
"""
created_at: String!
"""
expires in
"""
expires_in: String
"""
form id
"""
form_id: String
"""
The unique identifier of the offering include.
"""
id: ID!
"""
whether or not the offering_include (appointment type) should be recurring
"""
is_repeating: Boolean!
"""
id of related offering
"""
offering_id: ID
"""
quantity of appointments in package
"""
quantity: String
"""
whether or not the offering book
"""
required_appointment_type: Boolean!
"""
updated at
"""
updated_at: String!
}