Sha256: 56ee14a41950e08e971a24f682857262636456af01b22566bc8cdb6a7f30e870
Contents?: true
Size: 1.85 KB
Versions: 4
Compression:
Stored size: 1.85 KB
Contents
# SyncteraRubySdk::TemplateFieldsChargeSecured ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **account_type** | [**AccountType**](AccountType.md) | | | | **bank_country** | **String** | Bank country of the account. ISO 3166-1 Alpha-2 or Alpha-3 country code. | | | **currency** | **String** | Account currency. ISO 4217 alphabetic currency code | | | **auto_payment_period** | **Integer** | The number of days past the billing period to initiate an auto payment. Only applicable for accounts with type `CHARGE_SECURED`, where the account holder has opted in for auto payment functionality. This value must be lower than or equal the `grace_period` setting on the account. If this value is 0, the auto payment will happen on the same day as the statement is generated. Auto payment only occurs if regular payments are not received on time. | [optional] | | **chargeoff_period** | **Integer** | The number of days an account can stay delinquent before marking an account as charged-off. | [optional][default to 90] | | **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][default to 21] | | **minimum_payment** | [**MinimumPaymentFull**](MinimumPaymentFull.md) | | | ## Example ```ruby require 'synctera_ruby_sdk' instance = SyncteraRubySdk::TemplateFieldsChargeSecured.new( account_type: null, bank_country: US, currency: USD, auto_payment_period: 20, chargeoff_period: null, delinquency_period: null, grace_period: null, minimum_payment: null ) ```
Version data entries
4 entries across 4 versions & 1 rubygems