Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.18 KB

TravelRuleValidatePerson.md

File metadata and controls

30 lines (21 loc) · 1.18 KB

TravelRuleValidatePerson

Properties

Name Type Description Notes
natural_person TravelRuleValidateNaturalPerson [optional]
legal_person TravelRuleValidateLegalPerson [optional]

Example

from fireblocks.models.travel_rule_validate_person import TravelRuleValidatePerson

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

# convert the object into a dict
travel_rule_validate_person_dict = travel_rule_validate_person_instance.to_dict()
# create an instance of TravelRuleValidatePerson from a dict
travel_rule_validate_person_from_dict = TravelRuleValidatePerson.from_dict(travel_rule_validate_person_dict)

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