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: StringThe ID of the Financial Connections Account this transaction belongs to.
amount: i64The amount of this transaction, in cents (or local equivalent).
currency: CurrencyThree-letter ISO currency code, in lowercase. Must be a supported currency.
description: StringThe description of this transaction.
id: FinancialConnectionsTransactionIdUnique identifier for the object.
livemode: boolHas the value true if the object exists in live mode or the value false if the object exists in test mode.
status: FinancialConnectionsTransactionStatusThe status of the transaction.
status_transitions: BankConnectionsResourceTransactionResourceStatusTransitions§transacted_at: TimestampTime at which the transaction was transacted. Measured in seconds since the Unix epoch.
transaction_refresh: StringThe token of the transaction refresh that last updated or created this transaction.
updated: TimestampTime 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