ReservationPaymentDetail Class
Information about payment related to a reservation order.
Constructor
ReservationPaymentDetail(*args: Any, **kwargs: Any)
Variables
| Name | Description |
|---|---|
|
due_date
|
Date when the payment needs to be done. |
|
payment_date
|
Date when the transaction is completed. Is null when it is scheduled. |
|
pricing_currency_total
|
Amount in pricing currency. Tax not included. |
|
billing_currency_total
|
Amount charged in Billing currency. Tax not included. Is null for future payments. |
|
billing_account
|
Shows the Account that is charged for this payment. |
|
status
|
str or
PaymentStatus
Describes whether the payment is completed, failed, pending, cancelled or scheduled in the future. Known values are: "Succeeded", "Failed", "Scheduled", "Cancelled", "Completed", and "Pending". |
|
extended_status_info
|
Extended status information for the reservation. |
Attributes
billing_account
Shows the Account that is charged for this payment.
billing_account: str | None
billing_currency_total
Amount charged in Billing currency. Tax not included. Is null for future payments.
billing_currency_total: _models.Price | None
due_date
Date when the payment needs to be done.
due_date: date | None
extended_status_info
Extended status information for the reservation.
extended_status_info: _models.ReservationExtendedStatusInfo | None
payment_date
Date when the transaction is completed. Is null when it is scheduled.
payment_date: date | None
pricing_currency_total
Amount in pricing currency. Tax not included.
pricing_currency_total: _models.Price | None
status
Describes whether the payment is completed, failed, pending, cancelled or scheduled in the future. Known values are: "Succeeded", "Failed", "Scheduled", "Cancelled", "Completed", and "Pending".
status: str | _models.PaymentStatus | None