Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.95 KB

File metadata and controls

40 lines (31 loc) · 1.95 KB

PersonalIdentification

Properties

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
email 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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]