CancelHotelBookingInput
Defines the input for canceling a hotel booking.
input CancelHotelBookingInput {
cancelationFeeOverride: Float
cancelationTaxOverrides: [TaxOverrideInput!]
contactId: ID!
eventId: ID!
hotelBookingId: ID!
}
Fields
CancelHotelBookingInput.cancelationFeeOverride ● Float scalar
The cancelation fee for the hotel booking that will override the cancelation fee from setup in the currency of the booking. Optional.
CancelHotelBookingInput.cancelationTaxOverrides ● [TaxOverrideInput!] list input
The collection of cancelation taxes for the hotel booking that will override the cancelation taxes from setup. Optional.
When set to null, the default cancelation taxes from the hotel will be applied. When set to an empty array, no taxes will be applied.
CancelHotelBookingInput.contactId ● ID! non-null scalar
The identifier of the contact the hotel booking is associated with.
CancelHotelBookingInput.eventId ● ID! non-null scalar
The identifier of the event the hotel booking is associated with.
CancelHotelBookingInput.hotelBookingId ● ID! non-null scalar
The identifier of the hotel booking.
Member Of
cancelHotelBooking mutation