Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.97 KB

TravelRuleValidateNaturalNameIdentifier.md

File metadata and controls

31 lines (22 loc) · 1.97 KB

TravelRuleValidateNaturalNameIdentifier

Properties

Name Type Description Notes
primary_identifier str The primary identifier of the name [optional]
secondary_identifier str The secondary identifier of the name [optional]
name_identifier_type str Specifies the type of name for a natural person. Acceptable values are: - 'ALIA': Alias name, a name other than the legal name by which a natural person is also known. - 'BIRT': Name at birth, the name given to a natural person at birth. - 'MAID': Maiden name, the original name of a natural person who has changed their name after marriage. - 'LEGL': Legal name, the name that identifies a natural person for legal, official, or administrative purposes. - 'MISC': Unspecified, a name by which a natural person may be known but cannot otherwise be categorized. [optional]

Example

from fireblocks.models.travel_rule_validate_natural_name_identifier import TravelRuleValidateNaturalNameIdentifier

# TODO update the JSON string below
json = "{}"
# create an instance of TravelRuleValidateNaturalNameIdentifier from a JSON string
travel_rule_validate_natural_name_identifier_instance = TravelRuleValidateNaturalNameIdentifier.from_json(json)
# print the JSON string representation of the object
print(TravelRuleValidateNaturalNameIdentifier.to_json())

# convert the object into a dict
travel_rule_validate_natural_name_identifier_dict = travel_rule_validate_natural_name_identifier_instance.to_dict()
# create an instance of TravelRuleValidateNaturalNameIdentifier from a dict
travel_rule_validate_natural_name_identifier_from_dict = TravelRuleValidateNaturalNameIdentifier.from_dict(travel_rule_validate_natural_name_identifier_dict)

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