pub struct FinancialConnectionsTransaction {
pub account: String,
pub amount: i64,
pub currency: Currency,
pub description: String,
pub id: FinancialConnectionsTransactionId,
pub livemode: bool,
pub status: FinancialConnectionsTransactionStatus,
pub status_transitions: BankConnectionsResourceTransactionResourceStatusTransitions,
pub transacted_at: Timestamp,
pub transaction_refresh: String,
pub updated: Timestamp,
}
Expand description
A Transaction represents a real transaction that affects a Financial Connections Account balance.
Fields§
§account: String
The ID of the Financial Connections Account this transaction belongs to.
amount: i64
The amount of this transaction, in cents (or local equivalent).
currency: Currency
Three-letter ISO currency code, in lowercase. Must be a supported currency.
description: String
The description of this transaction.
id: FinancialConnectionsTransactionId
Unique identifier for the object.
livemode: bool
Has the value true
if the object exists in live mode or the value false
if the object exists in test mode.
status: FinancialConnectionsTransactionStatus
The status of the transaction.
status_transitions: BankConnectionsResourceTransactionResourceStatusTransitions
§transacted_at: Timestamp
Time at which the transaction was transacted. Measured in seconds since the Unix epoch.
transaction_refresh: String
The token of the transaction refresh that last updated or created this transaction.
updated: Timestamp
Time at which the object was last updated. Measured in seconds since the Unix epoch.
Trait Implementations§
Source§impl Clone for FinancialConnectionsTransaction
impl Clone for FinancialConnectionsTransaction
Source§fn clone(&self) -> FinancialConnectionsTransaction
fn clone(&self) -> FinancialConnectionsTransaction
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more