Skip to main content

CancelTravelBookingInput

Defines the input for cancelling a travel booking.

input CancelTravelBookingInput {
cancelationFeeOverride: Float
cancelationTaxOverrides: [TaxOverrideInput!]
contactId: ID!
eventId: ID!
travelBookingId: ID!
}

Fields

CancelTravelBookingInput.cancelationFeeOverride ● Float scalar

The cancelation fee for the travel booking that will override the cancelation fee from setup in the currency of the booking. Optional.

CancelTravelBookingInput.cancelationTaxOverrides ● [TaxOverrideInput!] list input

The collection of cancelation taxes for the travel booking that will override the cancelation taxes from setup. Optional.

When set to null, the default cancelation taxes from setup will be applied. When set to an empty array, no taxes will be applied.

CancelTravelBookingInput.contactId ● ID! non-null scalar

The identifier of the contact the travel booking is associated with.

CancelTravelBookingInput.eventId ● ID! non-null scalar

The identifier of the event the travel booking is associated with.

CancelTravelBookingInput.travelBookingId ● ID! non-null scalar

The identifier of the travel booking.

Member Of

cancelTravelBooking mutation