You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromfireblocks.models.travel_rule_validate_natural_name_identifierimportTravelRuleValidateNaturalNameIdentifier# TODO update the JSON string belowjson="{}"# create an instance of TravelRuleValidateNaturalNameIdentifier from a JSON stringtravel_rule_validate_natural_name_identifier_instance=TravelRuleValidateNaturalNameIdentifier.from_json(json)
# print the JSON string representation of the objectprint(TravelRuleValidateNaturalNameIdentifier.to_json())
# convert the object into a dicttravel_rule_validate_natural_name_identifier_dict=travel_rule_validate_natural_name_identifier_instance.to_dict()
# create an instance of TravelRuleValidateNaturalNameIdentifier from a dicttravel_rule_validate_natural_name_identifier_from_dict=TravelRuleValidateNaturalNameIdentifier.from_dict(travel_rule_validate_natural_name_identifier_dict)