Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.85 KB

TravelRuleValidateNationalIdentification.md

File metadata and controls

33 lines (24 loc) · 1.85 KB

TravelRuleValidateNationalIdentification

Represents a national identifier for a person or entity

Properties

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]

Example

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)

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