TravelBookingPaymentDetails
Represents the details of a travel booking payment. Includes the status, adjustment, tax and total charge.
type TravelBookingPaymentDetails {
adjustmentAmount: Float!
paymentStatus: PaymentStatus!
taxAmount: Float!
totalChargeAmount: Float!
travelTaxAmount: Float!
}
Fields
TravelBookingPaymentDetails.adjustmentAmount
● Float!
non-null scalar
An adjustment applied to the fee amount.
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