Struct plaid_openapi::CreditCardLiability
source · [−]pub struct CreditCardLiability {
pub account_id: Option<String>,
pub aprs: Vec<APR>,
pub is_overdue: Option<bool>,
pub last_payment_amount: f64,
pub last_payment_date: Option<String>,
pub last_statement_issue_date: String,
pub last_statement_balance: f64,
pub minimum_payment_amount: f64,
pub next_payment_due_date: Option<String>,
}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<String>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_issue_date: StringThe date of the last statement. Dates are returned in an ISO 8601 format (YYYY-MM-DD).
last_statement_balance: f64The total amount owed as of the last statement issued
minimum_payment_amount: f64The minimum payment due for the next billing cycle.
next_payment_due_date: Option<String>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
sourceimpl Debug for CreditCardLiability
impl Debug for CreditCardLiability
sourceimpl<'de> Deserialize<'de> for CreditCardLiability
impl<'de> Deserialize<'de> for CreditCardLiability
sourcefn 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
sourceimpl Serialize for CreditCardLiability
impl Serialize for CreditCardLiability
Auto Trait Implementations
impl RefUnwindSafe for CreditCardLiability
impl Send for CreditCardLiability
impl Sync for CreditCardLiability
impl Unpin for CreditCardLiability
impl UnwindSafe for CreditCardLiability
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more