Skip to main content

GroupBookingAllocation

Defines the allocation of rooms for a group booking on a specific date.

type GroupBookingAllocation {
consumed: NonNegativeInt!
date: LocalDate!
numberOfRooms: PositiveInt!
remaining: Int!
totalNumberOfRooms: PositiveInt!
}

Fields

GroupBookingAllocation.consumed ● NonNegativeInt! non-null scalar

The number of rooms already consumed from the total number of rooms for this date.

GroupBookingAllocation.date ● LocalDate! non-null scalar

The date for the group booking allocation.

GroupBookingAllocation.numberOfRooms ● PositiveInt! non-null scalar

The number of rooms available in this group hotel booking for this date.

GroupBookingAllocation.remaining ● Int! non-null scalar

The number of rooms remaining from the total number of rooms for this date.

GroupBookingAllocation.totalNumberOfRooms ● PositiveInt! non-null scalar

The total number of rooms available of this hotel and room type in all group hotel bookings for the group for this date.

Member Of

HotelBooking object