Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

TravelRuleDateAndPlaceOfBirth.md

File metadata and controls

31 lines (22 loc) · 1.28 KB

TravelRuleDateAndPlaceOfBirth

Represents the date and place of birth for a natural person

Properties

Name Type Description Notes
date_of_birth str Date of birth. The value must be encrypted. [optional]
place_of_birth str Place of birth. The value must be encrypted. [optional]

Example

from fireblocks.models.travel_rule_date_and_place_of_birth import TravelRuleDateAndPlaceOfBirth

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

# convert the object into a dict
travel_rule_date_and_place_of_birth_dict = travel_rule_date_and_place_of_birth_instance.to_dict()
# create an instance of TravelRuleDateAndPlaceOfBirth from a dict
travel_rule_date_and_place_of_birth_from_dict = TravelRuleDateAndPlaceOfBirth.from_dict(travel_rule_date_and_place_of_birth_dict)

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