Name | Type | Description | Notes |
---|---|---|---|
name | List[TravelRuleNaturalPersonNameIdentifier] | An array of structured name identifiers for the natural person, referencing the TravelRuleNaturalPersonNameIdentifier schema. | [optional] |
geographic_address | List[TravelRuleGeographicAddress] | An array of geographic addresses associated with the natural person, referencing the TravelRuleGeographicAddress schema. | [optional] |
national_identification | TravelRuleNationalIdentification | [optional] | |
date_and_place_of_birth | TravelRuleDateAndPlaceOfBirth | [optional] | |
customer_identification | str | A unique identifier for the customer within the organization's context. The value must be encrypted. | [optional] |
country_of_residence | str | The ISO-3166 Alpha-2 country code of the natural person's residence. The value must be encrypted. | [optional] |
customer_number | str | A distinct identifier that uniquely identifies the customer within the organization. The value must be encrypted. | [optional] |
from fireblocks.models.travel_rule_natural_person import TravelRuleNaturalPerson
# TODO update the JSON string below
json = "{}"
# create an instance of TravelRuleNaturalPerson from a JSON string
travel_rule_natural_person_instance = TravelRuleNaturalPerson.from_json(json)
# print the JSON string representation of the object
print(TravelRuleNaturalPerson.to_json())
# convert the object into a dict
travel_rule_natural_person_dict = travel_rule_natural_person_instance.to_dict()
# create an instance of TravelRuleNaturalPerson from a dict
travel_rule_natural_person_from_dict = TravelRuleNaturalPerson.from_dict(travel_rule_natural_person_dict)