pub struct TreasuryTransactionEntry {
pub balance_impact: TreasuryTransactionsResourceBalanceImpact,
pub created: Timestamp,
pub currency: Currency,
pub effective_at: Timestamp,
pub financial_account: String,
pub flow: Option<String>,
pub flow_details: Option<TreasuryTransactionsResourceFlowDetails>,
pub flow_type: TreasuryTransactionEntryFlowType,
pub id: TreasuryTransactionEntryId,
pub livemode: bool,
pub transaction: Expandable<TreasuryTransaction>,
pub type_: TreasuryTransactionEntryType,
}
Expand description
TransactionEntries represent individual units of money movements within a single Transaction.
Fields§
§balance_impact: TreasuryTransactionsResourceBalanceImpact
§created: Timestamp
Time at which the object was created. Measured in seconds since the Unix epoch.
currency: Currency
Three-letter ISO currency code, in lowercase. Must be a supported currency.
effective_at: Timestamp
When the TransactionEntry will impact the FinancialAccount’s balance.
financial_account: String
The FinancialAccount associated with this object.
flow: Option<String>
Token of the flow associated with the TransactionEntry.
flow_details: Option<TreasuryTransactionsResourceFlowDetails>
Details of the flow associated with the TransactionEntry.
flow_type: TreasuryTransactionEntryFlowType
Type of the flow associated with the TransactionEntry.
id: TreasuryTransactionEntryId
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.
transaction: Expandable<TreasuryTransaction>
The Transaction associated with this object.
type_: TreasuryTransactionEntryType
The specific money movement that generated the TransactionEntry.
Trait Implementations§
Source§impl Clone for TreasuryTransactionEntry
impl Clone for TreasuryTransactionEntry
Source§fn clone(&self) -> TreasuryTransactionEntry
fn clone(&self) -> TreasuryTransactionEntry
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more