docs/CustomerNameBankModel

CybridApiBank::CustomerNameBankModel

Properties

Name Type Description Notes
first String The customer’s first name. [optional]
middle String The customer’s middle name. [optional]
last String The customer’s last name. [optional]
full String The customer’s full name. [optional]

Example

require 'cybrid_api_bank_ruby'

instance = CybridApiBank::CustomerNameBankModel.new(
  first: null,
  middle: null,
  last: null,
  full: null
)