TravelBookingPaymentDetails
Represents the details of a travel booking payment. Includes the status, adjustment, tax and total charge.
type TravelBookingPaymentDetails {
adjustmentAmount: Float!
payingContact: Contact
paymentStatus: PaymentStatus!
taxAmount: Float!
totalChargeAmount: Float!
travelTaxAmount: Float!
}
Fields
TravelBookingPaymentDetails.adjustmentAmount ● Float! non-null scalar
An adjustment applied to the fee amount.
TravelBookingPaymentDetails.payingContact ● Contact object
The contact paying for the travel booking when paymentStatus is CHARGE_TO_ANOTHER_CONTACT or CANCELED_CHARGE_TO_ANOTHER_CONTACT. Optional.
TravelBookingPaymentDetails.paymentStatus ● PaymentStatus! non-null enum
The payment status.
TravelBookingPaymentDetails.taxAmount ● Float! non-null scalar
The amount of tax applied to the fee.
TravelBookingPaymentDetails.totalChargeAmount ● Float! non-null scalar
The total amount that will be charged, in the fee's currency.
TravelBookingPaymentDetails.travelTaxAmount ● Float! non-null scalar
The travel tax amount that will be charged, in the fee's currency.
Member Of
TravelBooking object