PaymentDetail Class
Information about payment related to a savings plan order.
Constructor
PaymentDetail(*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. 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. |
|
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. |
Attributes
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.
extended_status_info: _models.ExtendedStatusInfo | None
payment_date
Date when the transaction is completed. 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