CheckoutBilling Object
Description
Billing and payment information for a checkout.
Declaration
type CheckoutBilling {
status: String
paymentDate: Date
refundDate: Date
address: Address
paymentMethods: [CheckoutPaymentMethod!]
refunds: [CheckoutPaymentMethod!]
voucher: CheckoutVoucher
invoice: CheckoutInvoice
}
Fields
| Name | Type | Description |
|---|---|---|
status | String | Billing status (e.g., "pending", "paid", "refunded"). |
paymentDate | Date | Date when payment was received. |
refundDate | Date | Date when refund was issued. |
address | Address | Billing address. |
paymentMethods | [CheckoutPaymentMethod!] | Payment methods used for this checkout. |
refunds | [CheckoutPaymentMethod!] | Refunds issued for this checkout. |
voucher | CheckoutVoucher | Voucher applied to this checkout. |
invoice | CheckoutInvoice | Invoice information for this checkout. |