Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.55 KB

TravelRuleLegalPersonNameIdentifier.md

File metadata and controls

30 lines (21 loc) · 1.55 KB

TravelRuleLegalPersonNameIdentifier

Properties

Name Type Description Notes
legal_person_name str 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

from fireblocks.models.travel_rule_legal_person_name_identifier import TravelRuleLegalPersonNameIdentifier

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

# convert the object into a dict
travel_rule_legal_person_name_identifier_dict = travel_rule_legal_person_name_identifier_instance.to_dict()
# create an instance of TravelRuleLegalPersonNameIdentifier from a dict
travel_rule_legal_person_name_identifier_from_dict = TravelRuleLegalPersonNameIdentifier.from_dict(travel_rule_legal_person_name_identifier_dict)

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