Name | Type | Description | Notes |
---|---|---|---|
address | str | ||
tag | str | [optional] |
from fireblocks.models.one_time_address import OneTimeAddress
# TODO update the JSON string below
json = "{}"
# create an instance of OneTimeAddress from a JSON string
one_time_address_instance = OneTimeAddress.from_json(json)
# print the JSON string representation of the object
print(OneTimeAddress.to_json())
# convert the object into a dict
one_time_address_dict = one_time_address_instance.to_dict()
# create an instance of OneTimeAddress from a dict
one_time_address_from_dict = OneTimeAddress.from_dict(one_time_address_dict)