ExhibitionBookingPaymentDetails
Represents the details of a exhibition booking payment. Includes the status, discount, loading, adjustment, tax and total charge.
type ExhibitionBookingPaymentDetails {
adjustmentAmount: Float!
cancelationFee: Float!
discountAmount: Float!
loadingAmount: Float!
payingContact: Contact
paymentStatus: PaymentStatus!
splitChargeAmount: Float
taxAmount: Float!
totalChargeAmount: Float!
totalOutstandingAmount: Float!
}
Fields
ExhibitionBookingPaymentDetails.adjustmentAmount ● Float! non-null scalar
An adjustment applied to the fee amount.
ExhibitionBookingPaymentDetails.cancelationFee ● Float! non-null scalar
The cancelation fee applied to the exhibition booking in the fee's currency.
ExhibitionBookingPaymentDetails.discountAmount ● Float! non-null scalar
A discount applied to the fee amount.
ExhibitionBookingPaymentDetails.loadingAmount ● Float! non-null scalar
A loading applied to the fee amount.
ExhibitionBookingPaymentDetails.payingContact ● Contact object
The contact paying for the exhibition booking when paymentStatus is CHARGE_TO_ANOTHER_CONTACT, CANCELED_CHARGE_TO_ANOTHER_CONTACT or SPLIT_CHARGE. Optional.
ExhibitionBookingPaymentDetails.paymentStatus ● PaymentStatus! non-null enum
The payment status.
ExhibitionBookingPaymentDetails.splitChargeAmount ● Float scalar
The amount that the other contact is paying when the paymentStatus is SPLIT_CHARGE. Optional.
ExhibitionBookingPaymentDetails.taxAmount ● Float! non-null scalar
The amount of tax applied to the fee.
ExhibitionBookingPaymentDetails.totalChargeAmount ● Float! non-null scalar
The total amount that will be charged, in the fee's currency.
ExhibitionBookingPaymentDetails.totalOutstandingAmount ● Float! non-null scalar
The total amount that is currently outstanding for the exhibition booking, in the fee's currency.
Member Of
ExhibitionBooking object