Sha256: cdbf042856e5269b41f5b7328e25b4b1cc7025e873af7a091e3eaa6d6548a0a7

Contents?: true

Size: 1.83 KB

Versions: 4

Compression:

Stored size: 1.83 KB

Contents

# SyncteraRubySdk::PatchAccountLineOfCreditAllOf

## 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] |
| **is_ach_enabled** | **Boolean** | A flag to indicate whether ACH transactions are enabled. | [optional] |
| **is_p2p_enabled** | **Boolean** | A flag to indicate whether P2P transactions are enabled. | [optional] |
| **is_wire_enabled** | **Boolean** | A flag to indicate whether wire transactions are enabled. | [optional] |
| **minimum_payment** | [**MinimumPaymentPartial**](MinimumPaymentPartial.md) |  | [optional] |
| **note** | **String** | Add an optional note when patching a line of credit account. A note is required when setting the status to or from SUSPENDED. | [optional] |
| **restrictions** | **Object** | Conditions that restrict the use of the account. | [optional] |

## Example

```ruby
require 'synctera_ruby_sdk'

instance = SyncteraRubySdk::PatchAccountLineOfCreditAllOf.new(
  chargeoff_period: null,
  credit_limit: 2500,
  delinquency_period: null,
  grace_period: 21,
  is_ach_enabled: null,
  is_p2p_enabled: null,
  is_wire_enabled: null,
  minimum_payment: null,
  note: null,
  restrictions: null
)
```

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
synctera_ruby_sdk-1.1.3 docs/PatchAccountLineOfCreditAllOf.md
synctera_ruby_sdk-1.1.2 docs/PatchAccountLineOfCreditAllOf.md
synctera_ruby_sdk-1.1.1 docs/PatchAccountLineOfCreditAllOf.md
synctera_ruby_sdk-1.0.0 docs/PatchAccountLineOfCreditAllOf.md