| Name | Type | Description | Notes |
|---|---|---|---|
| external_reference_id | str | ||
| entity_type | PersonalEntityTypeEnum | ||
| 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] |
from fireblocks.models.personal_identification import PersonalIdentification
# TODO update the JSON string below
json = "{}"
# create an instance of PersonalIdentification from a JSON string
personal_identification_instance = PersonalIdentification.from_json(json)
# print the JSON string representation of the object
print(PersonalIdentification.to_json())
# convert the object into a dict
personal_identification_dict = personal_identification_instance.to_dict()
# create an instance of PersonalIdentification from a dict
personal_identification_from_dict = PersonalIdentification.from_dict(personal_identification_dict)