Skip to content

AppointmentLocationInput

Payload for an appointment location

Fields

_destroy · Boolean · If true, the location will be deleted
clients_can_book · Boolean · If true, clients can book appointments at this location
has_rooms · Boolean · If true, this location has rooms
id · ID · The ID of the location
location · String · The graphql_name of the location
rooms · [RoomInput] · The rooms at this location

Used By

Definition

"""
Payload for an appointment location
"""
input AppointmentLocationInput {
"""
If true, the location will be deleted
"""
_destroy: Boolean
"""
If true, clients can book appointments at this location
"""
clients_can_book: Boolean
"""
If true, this location has rooms
"""
has_rooms: Boolean
"""
The ID of the location
"""
id: ID
"""
The graphql_name of the location
"""
location: String
"""
The rooms at this location
"""
rooms: [RoomInput]
}