Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.8 KB

TravelRuleLegalPerson.md

File metadata and controls

34 lines (25 loc) · 1.8 KB

TravelRuleLegalPerson

Properties

Name Type Description Notes
name TravelRuleLegalPersonNameIdentifier [optional]
geographic_address List[TravelRuleGeographicAddress] The array of geographic addresses associated with the legal person. [optional]
national_identification TravelRuleNationalIdentification [optional]
customer_identification str A unique identifier that identifies the customer in the organization's context. The value must be encrypted. [optional]
customer_number str A distinct identifier that uniquely identifies the customer within the organization. The value must be encrypted. [optional]
country_of_registration str The ISO-3166 Alpha-2 country code where the legal person is registered. The value must be encrypted. [optional]

Example

from fireblocks.models.travel_rule_legal_person import TravelRuleLegalPerson

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

# convert the object into a dict
travel_rule_legal_person_dict = travel_rule_legal_person_instance.to_dict()
# create an instance of TravelRuleLegalPerson from a dict
travel_rule_legal_person_from_dict = TravelRuleLegalPerson.from_dict(travel_rule_legal_person_dict)

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