CashFlow
struct CashFlow
Cash flow
Fields
Cash flow name
Cash flow name
Cash flow name
Outflow direction
Outflow direction
Outflow direction
Balance type
Balance type
Balance type
Business time
Business time
Business time
Cash flow description
Cash flow description
Cash flow description
Methods
[src]
fn new(inner: _CashFlow): CashFlow {
let direction = inner.direction as CashFlowDirection;
let business_type = inner.business_type as BalanceType;
return CashFlow {
transaction_flow_name: inner.transaction_flow_name,
direction: direction!,
business_type: business_type!,
balance: inner.balance,
currency: inner.currency,
business_time: inner.business_time,
symbol: inner.symbol,
description: inner.description,
};
}
[src]
fn new(inner: _CashFlow): CashFlow {
let direction = inner.direction as CashFlowDirection;
let business_type = inner.business_type as BalanceType;
return CashFlow {
transaction_flow_name: inner.transaction_flow_name,
direction: direction!,
business_type: business_type!,
balance: inner.balance,
currency: inner.currency,
business_time: inner.business_time,
symbol: inner.symbol,
description: inner.description,
};
}