pub struct FinancialEventGroup {
pub financial_event_group_id: Option<String>,
pub processing_status: Option<String>,
pub fund_transfer_status: Option<String>,
pub original_total: Option<Box<Currency>>,
pub converted_total: Option<Box<Currency>>,
pub fund_transfer_date: Option<String>,
pub trace_id: Option<String>,
pub account_tail: Option<String>,
pub beginning_balance: Option<Box<Currency>>,
pub financial_event_group_start: Option<String>,
pub financial_event_group_end: Option<String>,
}Expand description
FinancialEventGroup : Information related to a financial event group.
Fields
financial_event_group_id: Option<String>A unique identifier for the financial event group.
processing_status: Option<String>The processing status of the financial event group indicates whether the balance of the financial event group is settled. Possible values: * Open * Closed
fund_transfer_status: Option<String>The status of the fund transfer.
original_total: Option<Box<Currency>>converted_total: Option<Box<Currency>>fund_transfer_date: Option<String>trace_id: Option<String>The trace identifier used by sellers to look up transactions externally.
account_tail: Option<String>The account tail of the payment instrument.
beginning_balance: Option<Box<Currency>>financial_event_group_start: Option<String>financial_event_group_end: Option<String>Implementations
sourceimpl FinancialEventGroup
impl FinancialEventGroup
sourcepub fn new() -> FinancialEventGroup
pub fn new() -> FinancialEventGroup
Information related to a financial event group.
Trait Implementations
sourceimpl Clone for FinancialEventGroup
impl Clone for FinancialEventGroup
sourcefn clone(&self) -> FinancialEventGroup
fn clone(&self) -> FinancialEventGroup
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for FinancialEventGroup
impl Debug for FinancialEventGroup
sourceimpl Default for FinancialEventGroup
impl Default for FinancialEventGroup
sourcefn default() -> FinancialEventGroup
fn default() -> FinancialEventGroup
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for FinancialEventGroup
impl<'de> Deserialize<'de> for FinancialEventGroup
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<FinancialEventGroup> for FinancialEventGroup
impl PartialEq<FinancialEventGroup> for FinancialEventGroup
sourcefn eq(&self, other: &FinancialEventGroup) -> bool
fn eq(&self, other: &FinancialEventGroup) -> bool
sourceimpl Serialize for FinancialEventGroup
impl Serialize for FinancialEventGroup
impl StructuralPartialEq for FinancialEventGroup
Auto Trait Implementations
impl RefUnwindSafe for FinancialEventGroup
impl Send for FinancialEventGroup
impl Sync for FinancialEventGroup
impl Unpin for FinancialEventGroup
impl UnwindSafe for FinancialEventGroup
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more