Represents a national identifier for a person or entity
Name | Type | Description | Notes |
---|---|---|---|
country_of_issue | str | Country that issued the national identifier (ISO-3166 Alpha-2 country code) | [optional] |
national_identifier | str | National identifier (max 35 characters) | [optional] |
national_identifier_type | str | Type of national identifier. Acceptable values include: - 'PASSPORT': Passport number - 'NATIONAL_ID': National identification number - 'TAX_ID': Tax identification number - 'SOCIAL_SECURITY': Social security number | [optional] |
registration_authority | str | Registration authority (format -> RA followed by 6 digits) | [optional] |
from fireblocks.models.travel_rule_validate_national_identification import TravelRuleValidateNationalIdentification
# TODO update the JSON string below
json = "{}"
# create an instance of TravelRuleValidateNationalIdentification from a JSON string
travel_rule_validate_national_identification_instance = TravelRuleValidateNationalIdentification.from_json(json)
# print the JSON string representation of the object
print(TravelRuleValidateNationalIdentification.to_json())
# convert the object into a dict
travel_rule_validate_national_identification_dict = travel_rule_validate_national_identification_instance.to_dict()
# create an instance of TravelRuleValidateNationalIdentification from a dict
travel_rule_validate_national_identification_from_dict = TravelRuleValidateNationalIdentification.from_dict(travel_rule_validate_national_identification_dict)