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