docs/CustomerBankModel

CybridApiBank::CustomerBankModel

Properties

Name Type Description Notes
guid String Auto-generated unique identifier for the customer. [optional]
bank_guid String Auto-generated unique identifier for the customer’s bank. [optional]
type String The customer’s type. [optional]
created_at Time ISO8601 datetime the customer was created at. [optional]
state String The customer’s state. [optional]

Example

require 'cybrid_api_bank_ruby'

instance = CybridApiBank::CustomerBankModel.new(
  guid: null,
  bank_guid: null,
  type: null,
  created_at: null,
  state: null
)