Represents the date and place of birth for a natural person
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] |
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)