| Name | Type | Description | Notes |
|---|---|---|---|
| external_reference_id | str | ||
| entity_type | BusinessEntityTypeEnum | ||
| participant_relationship_type | ParticipantRelationshipType | ||
| full_name | PersonalIdentificationFullName | ||
| date_of_birth | date | ||
| postal_address | PostalAddress | ||
| str | [optional] | ||
| phone | str | Mobile phone number in E.164 format | [optional] |
| id_number | str | The identification number corresponding to the primary identification document type specified in idType | [optional] |
| id_type | PersonalIdentificationType | [optional] | |
| additional_id_number | str | The identification number corresponding to the additional identification document type specified in additionalIdType | [optional] |
| additional_id_type | PersonalIdentificationType | [optional] | |
| business_name | str | ||
| registration_number | str |
from fireblocks.models.identification import Identification
# TODO update the JSON string below
json = "{}"
# create an instance of Identification from a JSON string
identification_instance = Identification.from_json(json)
# print the JSON string representation of the object
print(Identification.to_json())
# convert the object into a dict
identification_dict = identification_instance.to_dict()
# create an instance of Identification from a dict
identification_from_dict = Identification.from_dict(identification_dict)