Sha256: 430f1c42570c755de8089aae68388d50ffca1a77f5a99086a237376d8fcf5cac
Contents?: true
Size: 1.57 KB
Versions: 4
Compression:
Stored size: 1.57 KB
Contents
# Plaid::CreditCardLiability ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **account_id** | **String** | The ID of the account that this liability belongs to. | [optional] | | **aprs** | [**Array<APR>**](APR.md) | The various interest rates that apply to the account. | | | **is_overdue** | **Boolean** | true if a payment is currently overdue. Availability for this field is limited. | [optional] | | **last_payment_amount** | **Float** | The amount of the last payment. | | | **last_payment_date** | **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_balance** | **Float** | The outstanding balance on the last statement. 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). | | | **minimum_payment_amount** | **Float** | The minimum payment due for the next billing cycle. | | | **next_payment_due_date** | **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). | | ## Example ```ruby require 'plaid' instance = Plaid::CreditCardLiability.new( account_id: null, aprs: null, is_overdue: null, last_payment_amount: null, last_payment_date: null, last_statement_balance: null, last_statement_issue_date: null, minimum_payment_amount: null, next_payment_due_date: null ) ```
Version data entries
4 entries across 4 versions & 1 rubygems