SyncteraRubySdk::InternalAccountPost

Properties

Name Type Description Notes
account_number String Generated internal account number [optional][readonly]
account_type InternalAccountType [optional]
balances Array<Balance> A list of balances for internal account based on different type [optional][readonly]
bank_routing String Bank routing number [optional][readonly]
creation_time Time The date and time the resource was created. [optional][readonly]
currency String Account currency or account settlement currency. ISO 4217 alphabetic currency code.
description String A user provided description for the current account [optional]
gl_type String What type of general ledger account this internal account represents. [optional]
id String Generated ID for internal account [optional][readonly]
is_system_acc Boolean Is a system-controlled internal account. When this field is true, this internal account will be reserved exclusively for internal use by the Synctera platform and any internal transfers to or from this internal account will be declined. [optional][default to false]
last_updated_time Time The date and time the resource was last updated. [optional][readonly]
purpose InternalAccountPurpose [optional]
status String

Example

require 'synctera_ruby_sdk'

instance = SyncteraRubySdk::InternalAccountPost.new(
  account_number: null,
  account_type: null,
  balances: null,
  bank_routing: null,
  creation_time: 2010-05-06T12:23:34.321Z,
  currency: USD,
  description: null,
  gl_type: null,
  id: null,
  is_system_acc: null,
  last_updated_time: 2010-05-06T12:23:34.321Z,
  purpose: null,
  status: null
)