RegistrationPaymentDetails
Represents the details of a registration payment. Includes the status, discount, adjustment, tax and total charge.
type RegistrationPaymentDetails {
adjustmentAmount: Float!
discountAmount: Float!
discountCode: RegistrationDiscountCode
paymentStatus: PaymentStatus!
taxAmount: Float!
totalChargeAmount: Float!
}
Fields
RegistrationPaymentDetails.adjustmentAmount ● Float! non-null scalar
An adjustment applied to the fee amount.
RegistrationPaymentDetails.discountAmount ● Float! non-null scalar
A discount applied to the fee amount.
RegistrationPaymentDetails.discountCode ● RegistrationDiscountCode object
The discount code used during the registration. Optional.
RegistrationPaymentDetails.paymentStatus ● PaymentStatus! non-null enum
The payment status.
RegistrationPaymentDetails.taxAmount ● Float! non-null scalar
The amount of tax applied to the fee.
RegistrationPaymentDetails.totalChargeAmount ● Float! non-null scalar
The total amount that will be charged, in the fee's currency.
Member Of
Registration object