Skip to content

AppointmentCreditChange

An object containing appointment type credit change event

Fields

appointment · Appointment · The appointment related to credit change event
created_at · String! · required · The time when credit change event was created
credit_change_event · String! · required · The event which caused credit change
credit_change_event_type · String · The specific action which caused credit change
credit_quantity · Int! · required · The amount of credits after specific event
id · ID! · required · The unique identifier of the credit change
initiator · User · The user who triggered credit change
offering · Offering · The offering related to credit change event

Used By

Definition

"""
An object containing appointment type credit change event
"""
type AppointmentCreditChange {
"""
The appointment related to credit change event
"""
appointment: Appointment
"""
The time when credit change event was created
"""
created_at: String!
"""
The event which caused credit change
"""
credit_change_event: String!
"""
The specific action which caused credit change
"""
credit_change_event_type: String
"""
The amount of credits after specific event
"""
credit_quantity: Int!
"""
The unique identifier of the credit change
"""
id: ID!
"""
The user who triggered credit change
"""
initiator: User
"""
The offering related to credit change event
"""
offering: Offering
}