Struct plaid::liabilities::PSLFStatus[][src]

pub struct PSLFStatus {
    pub estimated_eligibility_date: Option<NaiveDate>,
    pub payments_made: Option<i64>,
    pub payments_remaining: Option<i64>,
}

Fields

estimated_eligibility_date: Option<NaiveDate>

The estimated date borrower will have completed 120 qualifying monthly payments. Returned in ISO 8601 format (YYYY-MM-DD).

payments_made: Option<i64>

The number of qualifying payments that have been made.

payments_remaining: Option<i64>

The number of qualifying payments remaining.

Trait Implementations

impl Clone for PSLFStatus[src]

impl Debug for PSLFStatus[src]

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

Auto Trait Implementations

impl RefUnwindSafe for PSLFStatus[src]

impl Send for PSLFStatus[src]

impl Sync for PSLFStatus[src]

impl Unpin for PSLFStatus[src]

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