API Reference
Timerise © 2024
A slot is a single unit of time that the service is available for execution. It is possible to set slots of unavailability so that they are not visible to users on booking sites.
type Slot {
	slotId: ID!
	slotGroupId: ID!
	slotType: SlotType!
	quantity: NonNegativeInt!
	dateTimeFrom: DateTime
	dateTimeTo: DateTime
	duration: Duration
	title: NonEmptyString
	createdAt: DateTime!
	updatedAt: DateTime!
}
enum SlotType {
	AVAILABLE
	UNAVAILABLE
}