Skip to content

AttendedClientsInput

Payload for an AttendedClient

Fields

attended · Boolean · If the client attended the event
cancelled · Boolean · If the client cancelled the event
cancellation_reason · String · Reason for cancellation
other_cancellation_reason · String · Other reason for cancellation
confirmed · Boolean · If the client confirmed the event
id · ID · The unique identifier of the object
user_id · ID · The ID of the user

Used By

Definition

"""
Payload for an AttendedClient
"""
input AttendedClientsInput {
"""
If the client attended the event
"""
attended: Boolean
"""
If the client cancelled the event
"""
cancelled: Boolean
"""
Reason for cancellation
"""
cancellation_reason: String
"""
Other reason for cancellation
"""
other_cancellation_reason: String
"""
If the client confirmed the event
"""
confirmed: Boolean
"""
The unique identifier of the object
"""
id: ID
"""
The ID of the user
"""
user_id: ID
}