Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

OneTimeAddressReference

Properties

Name Type Description Notes
type OneTimeAddressPeerType
address str
tag str [optional]

Example

from fireblocks.models.one_time_address_reference import OneTimeAddressReference

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

# convert the object into a dict
one_time_address_reference_dict = one_time_address_reference_instance.to_dict()
# create an instance of OneTimeAddressReference from a dict
one_time_address_reference_from_dict = OneTimeAddressReference.from_dict(one_time_address_reference_dict)

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