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). The value must be encrypted. | [optional] |
| national_identifier | str | National identifier (max 35 characters). The value must be encrypted. | [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 The value must be encrypted. | [optional] |
| registration_authority | str | Registration authority (format -> RA followed by 6 digits). The value must be encrypted. | [optional] |
from fireblocks.models.travel_rule_national_identification import TravelRuleNationalIdentification
# TODO update the JSON string below
json = "{}"
# create an instance of TravelRuleNationalIdentification from a JSON string
travel_rule_national_identification_instance = TravelRuleNationalIdentification.from_json(json)
# print the JSON string representation of the object
print(TravelRuleNationalIdentification.to_json())
# convert the object into a dict
travel_rule_national_identification_dict = travel_rule_national_identification_instance.to_dict()
# create an instance of TravelRuleNationalIdentification from a dict
travel_rule_national_identification_from_dict = TravelRuleNationalIdentification.from_dict(travel_rule_national_identification_dict)