Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.02 KB

File metadata and controls

32 lines (23 loc) · 1.02 KB

AccountReference

Properties

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

Example

from fireblocks.models.account_reference import AccountReference

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

# convert the object into a dict
account_reference_dict = account_reference_instance.to_dict()
# create an instance of AccountReference from a dict
account_reference_from_dict = AccountReference.from_dict(account_reference_dict)

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