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
Name by which the legal person is known. The value must be encrypted.
[optional]
legal_person_name_identifier_type
str
Specifies the type of name for a legal person. Acceptable values are: - 'REGISTERED': The official registered name. - 'TRADE': A trading name or DBA (Doing Business As) name. - 'OTHER': Any other type of name. The value must be encrypted.
[optional]
Example
fromfireblocks.models.travel_rule_legal_person_name_identifierimportTravelRuleLegalPersonNameIdentifier# TODO update the JSON string belowjson="{}"# create an instance of TravelRuleLegalPersonNameIdentifier from a JSON stringtravel_rule_legal_person_name_identifier_instance=TravelRuleLegalPersonNameIdentifier.from_json(json)
# print the JSON string representation of the objectprint(TravelRuleLegalPersonNameIdentifier.to_json())
# convert the object into a dicttravel_rule_legal_person_name_identifier_dict=travel_rule_legal_person_name_identifier_instance.to_dict()
# create an instance of TravelRuleLegalPersonNameIdentifier from a dicttravel_rule_legal_person_name_identifier_from_dict=TravelRuleLegalPersonNameIdentifier.from_dict(travel_rule_legal_person_name_identifier_dict)