| Name | Type | Description | Notes |
|---|---|---|---|
| type | OneTimeAddressPeerType | ||
| account_id | str | ||
| address | str | ||
| tag | str | [optional] |
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)