AppointmentLocationInput
Payload for an appointment location
Fields
clients_can_book
· Boolean
· If true, clients can book appointments at this 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]}