PriceInput
Price indicates the value of the room/option. Supplements and/or surcharges can be included into the price, and will be verified with nodes Supplements/Surcharges.
input PriceInput {
currency: Currency!
binding: Boolean!
net: Float!
gross: Float!
minimumSellingPrice: Float
}
Fields
PriceInput.currency ● Currency! non-null scalar
Currency code indicating which currency should be paid.
PriceInput.binding ● Boolean! non-null scalar
It indicates whether the gross price must be honored, meaning the customer cannot sell the room/option at a price lower than the supplier's established rate.
PriceInput.net ● Float! non-null scalar
It indicates the net price that the customer must pay to the supplier. The net price is calculated by subtracting the included surcharges from the gross price. (For calculation purposes only)
PriceInput.gross ● Float! non-null scalar
Indicates the retail price that the supplier sells to the customer.
PriceInput.minimumSellingPrice ● Float scalar
Indicates the minimum selling price at which it can be sold (determined by the seller). If it is specified (not null), this field takes precedence over gross and binding.
Member Of
HotelOneStepBookInput input ● HotelOneStepQuoteInput input ● SupplementInput input ● SurchargeInput input