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
The primary identifier of the name. The value must be encrypted.
[optional]
secondary_identifier
str
The secondary identifier of the name. The value must be encrypted.
[optional]
name_identifier_type
str
The type of the name identifier. The value must be encrypted. The value must be one of the following: [LEGL, DBA, TRAD, NICK, ALIA, MAID, FORM, PREV, BORN, OTHR].
[optional]
Example
fromfireblocks.models.travel_rule_natural_name_identifierimportTravelRuleNaturalNameIdentifier# TODO update the JSON string belowjson="{}"# create an instance of TravelRuleNaturalNameIdentifier from a JSON stringtravel_rule_natural_name_identifier_instance=TravelRuleNaturalNameIdentifier.from_json(json)
# print the JSON string representation of the objectprint(TravelRuleNaturalNameIdentifier.to_json())
# convert the object into a dicttravel_rule_natural_name_identifier_dict=travel_rule_natural_name_identifier_instance.to_dict()
# create an instance of TravelRuleNaturalNameIdentifier from a dicttravel_rule_natural_name_identifier_from_dict=TravelRuleNaturalNameIdentifier.from_dict(travel_rule_natural_name_identifier_dict)