Skip to content
This repository was archived by the owner on Aug 20, 2025. It is now read-only.

Latest commit

 

History

History
33 lines (28 loc) · 2.44 KB

File metadata and controls

33 lines (28 loc) · 2.44 KB

DetailedPayment

Properties

Name Type Description Notes
id uuid::Uuid Unique system generated identifier for the entity.
r#type String Type of the payment object.
merchant_id uuid::Uuid Unique system generated identifier for the merchant.
merchant_wallet_id Option<String> Unique system generated identifier for the wallet of the merchant. [optional]
amount models::FiatMoneyUsd
source models::SourceResponse
description Option<String> Enumerated description of the payment. [optional]
status models::PaymentStatus
captured Option<bool> Determines if a payment has successfully been captured. This property is only present for payments that did not use auto capture. [optional]
capture_amount Option<models::FiatMoneyUsd> [optional]
capture_date Option<String> ISO-8601 UTC date/time format. [optional]
required_action Option<models::RequiredAction> [optional]
verification Option<models::PaymentVerificationResponse> [optional]
cancel Option<models::FiatCancel> [optional]
refunds Option<Vecmodels::FiatRefund> [optional]
fees Option<models::FiatMoneyUsd> [optional]
tracking_ref Option<String> Payment tracking reference. Will be present once known. [optional]
error_code Option<models::PaymentErrorCode> [optional]
metadata Option<models::MetadataPhoneEmail> [optional]
risk_evaluation Option<models::RiskEvaluation> [optional]
channel Option<uuid::Uuid> The channel identifier that can be set for the payment. When not provided, the default channel is used. [optional]
create_date Option<String> ISO-8601 UTC date/time format. [optional]
update_date Option<String> ISO-8601 UTC date/time format. [optional]

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