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: f64

The 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: String

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

last_statement_balance: f64

The total amount owed as of the last statement issued

minimum_payment_amount: f64

The 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

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more