pub struct FlexTransaction {
pub monzo_flex_id: String,
pub flex_transaction_type: FlexTransactionType,
pub exclude_from_breakdown: StringBoolean,
pub fee_amount: Option<String>,
pub instalment_plan_integrity_hash: Option<String>,
pub backing_loan_id: Option<String>,
pub instalment_plan_id: Option<String>,
pub transfer_id: Option<String>,
pub ledger_details: LedgerDetails,
pub extra: ExtraValues,
}Fields§
§monzo_flex_id: String§flex_transaction_type: FlexTransactionType§exclude_from_breakdown: StringBoolean§fee_amount: Option<String>§instalment_plan_integrity_hash: Option<String>§backing_loan_id: Option<String>§instalment_plan_id: Option<String>§transfer_id: Option<String>§ledger_details: LedgerDetails§extra: ExtraValuesThe value had extra fields that weren’t parsed into another field.
Trait Implementations§
Source§impl Clone for FlexTransaction
impl Clone for FlexTransaction
Source§fn clone(&self) -> FlexTransaction
fn clone(&self) -> FlexTransaction
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 Debug for FlexTransaction
impl Debug for FlexTransaction
Source§impl<'de> Deserialize<'de> for FlexTransaction
impl<'de> Deserialize<'de> for FlexTransaction
Source§fn 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
Source§impl HasExtraData for FlexTransaction
Available on crate feature decode_everything only.
impl HasExtraData for FlexTransaction
Available on crate feature
decode_everything only.Source§fn has_extra_data(&self) -> bool
fn has_extra_data(&self) -> bool
Recursively check if any extra data is present on this object or
any of it’s children.
Source§impl PartialEq for FlexTransaction
impl PartialEq for FlexTransaction
impl StructuralPartialEq for FlexTransaction
Auto Trait Implementations§
impl Freeze for FlexTransaction
impl RefUnwindSafe for FlexTransaction
impl Send for FlexTransaction
impl Sync for FlexTransaction
impl Unpin for FlexTransaction
impl UnwindSafe for FlexTransaction
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