# 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 type; one of business or individual. | [optional] | | **created_at** | **Time** | ISO8601 datetime the record was created at. | [optional] | | **updated_at** | **Time** | ISO8601 datetime the record was last updated at. | [optional] | | **state** | **String** | The customer state; one of storing, unverified, verified, rejected, or frozen. | [optional] | | **name** | [**CustomerNameBankModel**](CustomerNameBankModel.md) | | [optional] | | **address** | [**CustomerAddressBankModel**](CustomerAddressBankModel.md) | | [optional] | | **aliases** | [**Array<CustomerAliasesInnerBankModel>**](CustomerAliasesInnerBankModel.md) | The customer's aliases. Only available for GET operations when 'include_pii' is set. | [optional] | | **website** | **String** | The customer's website. Only available for GET operations when 'include_pii' is set. | [optional] | | **date_of_birth** | **Date** | The customer's DOB. Only available for GET operations when 'include_pii' is set. | [optional] | | **phone_number** | **String** | The customer's phone number. Only available for GET operations when 'include_pii' is set. | [optional] | | **email_address** | **String** | The customer's email address. Only available for GET operations when 'include_pii' is set. | [optional] | | **labels** | **Array<String>** | The labels associated with the customer. | [optional] | | **compliance_decisions** | [**Array<ComplianceDecisionBankModel>**](ComplianceDecisionBankModel.md) | The compliance decisions associated with the customer. | [optional] | | **identification_numbers** | [**Array<IdentificationNumberBankModel>**](IdentificationNumberBankModel.md) | The customer's identification numbers. Only available for GET operations when 'include_pii' is set and bank has access. | [optional] | | **activity_limits** | [**Array<ActivityLimitBankModel>**](ActivityLimitBankModel.md) | The asset limits associated with the customer. | [optional] | ## Example ```ruby require 'cybrid_api_bank_ruby' instance = CybridApiBank::CustomerBankModel.new( guid: null, bank_guid: null, type: null, created_at: null, updated_at: null, state: null, name: null, address: null, aliases: null, website: null, date_of_birth: null, phone_number: null, email_address: null, labels: null, compliance_decisions: null, identification_numbers: null, activity_limits: null ) ```