Struct plaid::liabilities::CreditLiability [−][src]
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: f64The 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: f64The outstanding balance on the last statement. Availability for this field is limited.
last_statement_issue_date: NaiveDateThe date of the last statement. Dates are returned in an ISO 8601 format (YYYY-MM-DD).
minimum_payment_amount: f64The 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]
fn clone(&self) -> CreditLiability[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for CreditLiability[src]
impl<'de> Deserialize<'de> for CreditLiability[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,