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 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.
[optional]
Example
fromfireblocks.models.travel_rule_validate_legal_person_name_identifierimportTravelRuleValidateLegalPersonNameIdentifier# TODO update the JSON string belowjson="{}"# create an instance of TravelRuleValidateLegalPersonNameIdentifier from a JSON stringtravel_rule_validate_legal_person_name_identifier_instance=TravelRuleValidateLegalPersonNameIdentifier.from_json(json)
# print the JSON string representation of the objectprint(TravelRuleValidateLegalPersonNameIdentifier.to_json())
# convert the object into a dicttravel_rule_validate_legal_person_name_identifier_dict=travel_rule_validate_legal_person_name_identifier_instance.to_dict()
# create an instance of TravelRuleValidateLegalPersonNameIdentifier from a dicttravel_rule_validate_legal_person_name_identifier_from_dict=TravelRuleValidateLegalPersonNameIdentifier.from_dict(travel_rule_validate_legal_person_name_identifier_dict)