Sha256: 1800b83c55894388cb7c26246a5446b14791906ccc0d1c2e545ba12ec4090947
Contents?: true
Size: 1.55 KB
Versions: 4
Compression:
Stored size: 1.55 KB
Contents
# SyncteraRubySdk::AccountLineOfCreditAllOf ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **chargeoff_period** | **Integer** | The number of days an account can stay delinquent before marking an account as charged-off. | [optional][default to 90] | | **credit_limit** | **Integer** | The credit limit for this line of credit account in cents. Minimum is 0. | [optional] | | **delinquency_period** | **Integer** | The number of days past the due date to wait for a minimum payment before marking an account as delinquent. | [optional][default to 30] | | **grace_period** | **Integer** | The number of days past the billing period to allow for payment before it is considered due. This directly infers the due date for a payment. The default will be set to 21 days. | [optional] | | **interest_product_id** | **String** | An interest account product that the current account associates with. The account product must have its calculation_method set to COMPOUNDED_DAILY. | [optional] | | **minimum_payment** | [**MinimumPaymentPartial**](MinimumPaymentPartial.md) | | [optional] | | **note** | **String** | Add an optional note when creating or updating a line of credit account. A note is required when updating the status to or from SUSPENDED | [optional] | ## Example ```ruby require 'synctera_ruby_sdk' instance = SyncteraRubySdk::AccountLineOfCreditAllOf.new( chargeoff_period: null, credit_limit: 2500, delinquency_period: null, grace_period: 21, interest_product_id: null, minimum_payment: null, note: null ) ```
Version data entries
4 entries across 4 versions & 1 rubygems