HotelInventory
Defines the inventory for a hotel.
type HotelInventory {
dailyInventories(
input: HotelInventoryByDateSearchFilterInput! = [object Object]
limit: PaginationLimit! = 100
offset: NonNegativeInt! = 0
): [HotelInventoryByDate!]!
type: HotelInventoryType!
}
Fields
HotelInventory.dailyInventories ● [HotelInventoryByDate!]! non-null object
The list of inventories by day for this hotel when type is LIMITED.
See HotelInventoryByDateSearchFilterInput for details on how the optional input argument can be used to filter daily inventories.
Optionally, the offset and limit arguments can be used to page through multiple items:
offsetmust be a non-negative integer (defaults to0).limitmust be a positive integer from1to2000(defaults to100).
HotelInventory.dailyInventories.input ● HotelInventoryByDateSearchFilterInput! non-null input
HotelInventory.dailyInventories.limit ● PaginationLimit! non-null scalar
HotelInventory.dailyInventories.offset ● NonNegativeInt! non-null scalar
HotelInventory.type ● HotelInventoryType! non-null enum
The inventory type for this hotel.
Member Of
Hotel object