Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.6 KB

TravelRuleValidateLegalPersonNameIdentifier.md

File metadata and controls

30 lines (21 loc) · 1.6 KB

TravelRuleValidateLegalPersonNameIdentifier

Properties

Name Type Description Notes
legal_person_name str Name by which the legal person is known. [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. [optional]

Example

from fireblocks.models.travel_rule_validate_legal_person_name_identifier import TravelRuleValidateLegalPersonNameIdentifier

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

# convert the object into a dict
travel_rule_validate_legal_person_name_identifier_dict = travel_rule_validate_legal_person_name_identifier_instance.to_dict()
# create an instance of TravelRuleValidateLegalPersonNameIdentifier from a dict
travel_rule_validate_legal_person_name_identifier_from_dict = TravelRuleValidateLegalPersonNameIdentifier.from_dict(travel_rule_validate_legal_person_name_identifier_dict)

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