Name | Type | Description | Notes |
---|---|---|---|
id | str | ||
type | PayeeAccountType |
from fireblocks.models.payee_account import PayeeAccount
# TODO update the JSON string below
json = "{}"
# create an instance of PayeeAccount from a JSON string
payee_account_instance = PayeeAccount.from_json(json)
# print the JSON string representation of the object
print(PayeeAccount.to_json())
# convert the object into a dict
payee_account_dict = payee_account_instance.to_dict()
# create an instance of PayeeAccount from a dict
payee_account_from_dict = PayeeAccount.from_dict(payee_account_dict)