Skip to main content

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:

  • offset must be a non-negative integer (defaults to 0).
  • limit must be a positive integer from 1 to 2000 (defaults to 100).
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