Struct plaid::liabilities::CreditLiability[][src]

pub struct CreditLiability {
    pub account_id: Option<String>,
    pub aprs: Vec<APR>,
    pub is_overdue: Option<bool>,
    pub last_payment_amount: f64,
    pub last_payment_date: Option<NaiveDate>,
    pub last_statement_balance: f64,
    pub last_statement_issue_date: NaiveDate,
    pub minimum_payment_amount: f64,
    pub next_payment_due_date: Option<NaiveDate>,
}

Fields

account_id: Option<String>

The ID of the account that this liability belongs to.

aprs: Vec<APR>

The various interest rates that apply to the account.

is_overdue: Option<bool>

true if a payment is currently overdue. Availability for this field is limited.

last_payment_amount: f64

The amount of the last payment.

last_payment_date: Option<NaiveDate>

The date of the last payment. Dates are returned in an ISO 8601 format (YYYY-MM-DD). Availability for this field is limited.

last_statement_balance: f64

The outstanding balance on the last statement. Availability for this field is limited.

last_statement_issue_date: NaiveDate

The date of the last statement. Dates are returned in an ISO 8601 format (YYYY-MM-DD).

minimum_payment_amount: f64

The minimum payment due for the next billing cycle.

next_payment_due_date: Option<NaiveDate>

The due date for the next payment. The due date is null if a payment is not expected. Dates are returned in an ISO 8601 format (YYYY-MM-DD).

Trait Implementations

impl Clone for CreditLiability[src]

impl Debug for CreditLiability[src]

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

Auto Trait Implementations

impl RefUnwindSafe for CreditLiability[src]

impl Send for CreditLiability[src]

impl Sync for CreditLiability[src]

impl Unpin for CreditLiability[src]

impl UnwindSafe for CreditLiability[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.