Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 918 Bytes

OneTimeAddress.md

File metadata and controls

30 lines (21 loc) · 918 Bytes

OneTimeAddress

Properties

Name Type Description Notes
address str
tag str [optional]

Example

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)

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