Skip to content

AdvanceAppointmentPrice

Specific appointment price object for provider/client

Fields

appointment_type_id · ID · Appointment type ID this appointment price is associated with.
id · ID! · required · The unique identifier of the price
price · String! · required · The advance price for this appointment type
user_id · ID! · required · User ID this appointment price is associated with.

Used By

Definition

"""
Specific appointment price object for provider/client
"""
type AdvanceAppointmentPrice {
"""
Appointment type ID this appointment price is associated with.
"""
appointment_type_id: ID
"""
The unique identifier of the price
"""
id: ID!
"""
The advance price for this appointment type
"""
price: String!
"""
User ID this appointment price is associated with.
"""
user_id: ID!
}