pub struct DebitCardActivity {
pub account_id: String,
pub acct_alias: Option<String>,
pub model: Option<String>,
pub date: Option<NaiveDate>,
pub merchant: Option<String>,
pub category: Option<String>,
pub status: Option<String>,
pub transaction_type: Option<String>,
pub amount: Option<Decimal>,
pub currency: Option<String>,
pub fx_rate_to_base: Option<Decimal>,
}Expand description
Debit card activity
Fields§
§account_id: StringAccount ID
acct_alias: Option<String>Account alias
model: Option<String>Model
date: Option<NaiveDate>Date
merchant: Option<String>Merchant
category: Option<String>Category
status: Option<String>Status
transaction_type: Option<String>Transaction type
amount: Option<Decimal>Amount
currency: Option<String>Currency
fx_rate_to_base: Option<Decimal>FX rate to base
Trait Implementations§
Source§impl Clone for DebitCardActivity
impl Clone for DebitCardActivity
Source§fn clone(&self) -> DebitCardActivity
fn clone(&self) -> DebitCardActivity
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 DebitCardActivity
impl Debug for DebitCardActivity
Source§impl<'de> Deserialize<'de> for DebitCardActivity
impl<'de> Deserialize<'de> for DebitCardActivity
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 PartialEq for DebitCardActivity
impl PartialEq for DebitCardActivity
Source§impl Serialize for DebitCardActivity
impl Serialize for DebitCardActivity
impl StructuralPartialEq for DebitCardActivity
Auto Trait Implementations§
impl Freeze for DebitCardActivity
impl RefUnwindSafe for DebitCardActivity
impl Send for DebitCardActivity
impl Sync for DebitCardActivity
impl Unpin for DebitCardActivity
impl UnwindSafe for DebitCardActivity
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