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: TreasuryTransactionsResourceBalanceImpactChange to a FinancialAccount’s balance
created: i64Time at which the object was created. Measured in seconds since the Unix epoch.
currency: StringThree-letter ISO currency code, in lowercase. Must be a supported currency.
effective_at: i64When the TransactionEntry will impact the FinancialAccount’s balance.
financial_account: StringThe 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: StringType of the flow associated with the TransactionEntry.
id: StringUnique 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.
object: StringString representing the object’s type. Objects of the same type share the same value.
transaction: ValueThe Transaction associated with this object.
type_: StringThe 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