Struct plaid::transactions::AccountBalances[][src]

pub struct AccountBalances {
    pub available: Option<f64>,
    pub current: f64,
    pub limit: Option<f64>,
    pub iso_currency_code: Option<String>,
    pub unofficial_currency_code: Option<String>,
}

Fields

available: Option<f64>

The amount of funds available to be withdrawn from the account, as determined by the financial institution.

current: f64

The total amount of funds in or owed by the account.

limit: Option<f64>

For credit-type accounts, this represents the credit limit. For depository-type accounts, this represents the pre-arranged overdraft limit, which is common for current (checking) accounts in Europe. In North America, this field is typically only available for credit-type accounts.

iso_currency_code: Option<String>

The ISO-4217 currency code of the balance. Always null if unofficial_currency_code is non-null.

unofficial_currency_code: Option<String>

The unofficial currency code associated with the balance. Always null if iso_currency_code is non-null.

Trait Implementations

impl Clone for AccountBalances[src]

impl Debug for AccountBalances[src]

impl<'de> Deserialize<'de> for AccountBalances[src]

Auto Trait Implementations

impl RefUnwindSafe for AccountBalances[src]

impl Send for AccountBalances[src]

impl Sync for AccountBalances[src]

impl Unpin for AccountBalances[src]

impl UnwindSafe for AccountBalances[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.