pub struct TreasuryTransactionsResourceFlowDetails {
pub credit_reversal: Option<TreasuryCreditReversal>,
pub debit_reversal: Option<TreasuryDebitReversal>,
pub inbound_transfer: Option<TreasuryInboundTransfer>,
pub issuing_authorization: Option<IssuingAuthorization>,
pub outbound_payment: Option<TreasuryOutboundPayment>,
pub outbound_transfer: Option<TreasuryOutboundTransfer>,
pub received_credit: Option<TreasuryReceivedCredit>,
pub received_debit: Option<TreasuryReceivedDebit>,
pub type_: TreasuryTransactionsResourceFlowDetailsType,
}
Fields§
§credit_reversal: Option<TreasuryCreditReversal>
§debit_reversal: Option<TreasuryDebitReversal>
§inbound_transfer: Option<TreasuryInboundTransfer>
§outbound_payment: Option<TreasuryOutboundPayment>
§outbound_transfer: Option<TreasuryOutboundTransfer>
§received_credit: Option<TreasuryReceivedCredit>
§received_debit: Option<TreasuryReceivedDebit>
§type_: TreasuryTransactionsResourceFlowDetailsType
Type of the flow that created the Transaction. Set to the same value as flow_type
.
Trait Implementations§
Source§impl Clone for TreasuryTransactionsResourceFlowDetails
impl Clone for TreasuryTransactionsResourceFlowDetails
Source§fn clone(&self) -> TreasuryTransactionsResourceFlowDetails
fn clone(&self) -> TreasuryTransactionsResourceFlowDetails
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl FromValueOpt for TreasuryTransactionsResourceFlowDetails
impl FromValueOpt for TreasuryTransactionsResourceFlowDetails
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for TreasuryTransactionsResourceFlowDetails
impl RefUnwindSafe for TreasuryTransactionsResourceFlowDetails
impl Send for TreasuryTransactionsResourceFlowDetails
impl Sync for TreasuryTransactionsResourceFlowDetails
impl Unpin for TreasuryTransactionsResourceFlowDetails
impl UnwindSafe for TreasuryTransactionsResourceFlowDetails
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more