pub struct TreasuryTransactionEntry {Show 13 fields
pub balance_impact: TreasuryTransactionsResourceBalanceImpact,
pub created: i64,
pub currency: String,
pub effective_at: i64,
pub financial_account: String,
pub flow: Option<String>,
pub flow_details: Option<Value>,
pub flow_type: String,
pub id: String,
pub livemode: bool,
pub object: String,
pub transaction: Value,
pub type_: String,
}
Expand description
TransactionEntries represent individual units of money movements within a single Transaction.
Fields§
§balance_impact: TreasuryTransactionsResourceBalanceImpact
Change to a FinancialAccount’s balance
created: i64
Time at which the object was created. Measured in seconds since the Unix epoch.
currency: String
Three-letter ISO currency code, in lowercase. Must be a supported currency.
effective_at: i64
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<Value>
Details of the flow associated with the TransactionEntry.
flow_type: String
Type of the flow associated with the TransactionEntry.
id: String
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.
object: String
String representing the object’s type. Objects of the same type share the same value.
transaction: Value
The Transaction associated with this object.
type_: String
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