SyncteraRubySdk::PatchAccountDepositoryAllOf
Properties
| Name |
Type |
Description |
Notes |
| balance_ceiling |
BalanceCeiling |
|
[optional] |
| balance_floor |
BalanceFloor |
|
[optional] |
| fee_product_ids |
Array<String> |
A list of fee account products that the current account associates with. |
[optional] |
| interest_product_id |
String |
An interest account product that the current account associates with. |
[optional] |
| is_ach_enabled |
Boolean |
A flag to indicate whether ACH transactions are enabled. |
[optional] |
| is_card_enabled |
Boolean |
A flag to indicate whether card transactions are enabled. |
[optional] |
| is_external_card_enabled |
Boolean |
A flag to indicate whether external cards 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] |
| note |
String |
Add an optional note when creating or updating a depository account. A note is required when updating the status to or from SUSPENDED |
[optional] |
| overdraft_limit |
Integer |
Account's overdraft limit |
[optional] |
| restrictions |
Object |
Conditions that restrict the use of the account. |
[optional] |
| spend_control_ids |
Array<String> |
List of spend control IDs to control spending for the account |
[optional] |
| spending_limits |
SpendingLimits |
|
[optional] |
Example
require 'synctera_ruby_sdk'
instance = SyncteraRubySdk::PatchAccountDepositoryAllOf.new(
balance_ceiling: null,
balance_floor: null,
fee_product_ids: null,
interest_product_id: null,
is_ach_enabled: null,
is_card_enabled: null,
is_external_card_enabled: null,
is_p2p_enabled: null,
is_wire_enabled: null,
note: null,
overdraft_limit: null,
restrictions: null,
spend_control_ids: null,
spending_limits: null
)