# CybridApiBank::PostCustomerBankModel ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **type** | **String** | The customer's type. | | | **name** | [**PostCustomerNameBankModel**](PostCustomerNameBankModel.md) | | [optional] | | **address** | [**PostCustomerAddressBankModel**](PostCustomerAddressBankModel.md) | | [optional] | | **date_of_birth** | **Date** | The customer's date of birth. | [optional] | | **phone_number** | **String** | The customer's phone number. | [optional] | | **email_address** | **String** | The customer's phone number. | [optional] | | **identification_numbers** | [**Array<PostIdentificationNumberBankModel>**](PostIdentificationNumberBankModel.md) | The customer's identification numbers. | [optional] | ## Example ```ruby require 'cybrid_api_bank_ruby' instance = CybridApiBank::PostCustomerBankModel.new( type: null, name: null, address: null, date_of_birth: null, phone_number: null, email_address: null, identification_numbers: null ) ```