Skip to content

Latest commit

 

History

History
35 lines (31 loc) · 3.22 KB

File metadata and controls

35 lines (31 loc) · 3.22 KB

Payment

Properties

Name Type Description Notes
id String A unique 25-character alphanumeric payment identifier. [default to null]
resource String Resource name. Will always be `payment`. [default to null]
status PaymentStatus [default to null]
amount Integer The payment amount before tax, greater than or equal to 0, in the lowest denomination of the currency (e.g. cents for USD). [default to null]
tax Integer The tax amount, greater than or equal to 0, in the lowest denomination of the currency (e.g. cents for USD). [default to null]
customer String Customer UUID if associated with a customer, otherwise null. [default to null]
payment_deadline Date Deadline by which the payment must be completed, or null. [default to null]
payment_details ResponsePaymentDetailsAll [default to null]
payment_method_fee Integer Amount greater than or equal to 0, in the lowest denomination of the currency (e.g. cents for USD). [default to null]
total Integer Amount greater than or equal to 0, in the lowest denomination of the currency (e.g. cents for USD). [default to null]
currency Currency [default to null]
description String A description for this payment. May be null if it's not set. [default to null]
captured_at Date Timestamp when the payment was captured, or null if not yet captured. [default to null]
external_order_num String Merchant-assigned external order number for this payment. [default to null]
metadata Object Arbitrary key-value metadata attached at payment creation time. [default to null]
created_at Date Timestamp when the payment was created. [default to null]
amount_refunded Integer Amount greater than or equal to 0, in the lowest denomination of the currency (e.g. cents for USD). [default to null]
locale Locale [default to null]
session String A unique 25-character alphanumeric resource identifier. [default to null]
customer_family_name String Customer's family name. [default to null]
customer_given_name String Customer's given name. [default to null]
mcc String Merchant Category Code used for this payment. [default to null]
statement_descriptor StatementDescriptor [default to null]
platform_details PlatformDetails [optional] [default to null]
refunds List An array of refunds. Will be an empty array if there are no refunds. [default to null]
refund_requests List An array of refund requests. Will be an empty array if there are no refund requests. [default to null]

[Back to Model list] [Back to API list] [Back to README]