Name | Type | Description | Notes |
---|---|---|---|
id | str | [optional] | |
type | FiatAccountType | [optional] | |
name | str | Display name of the fiat account | [optional] |
address | str | [optional] | |
assets | List[FiatAsset] | [optional] |
from fireblocks.models.fiat_account import FiatAccount
# TODO update the JSON string below
json = "{}"
# create an instance of FiatAccount from a JSON string
fiat_account_instance = FiatAccount.from_json(json)
# print the JSON string representation of the object
print(FiatAccount.to_json())
# convert the object into a dict
fiat_account_dict = fiat_account_instance.to_dict()
# create an instance of FiatAccount from a dict
fiat_account_from_dict = FiatAccount.from_dict(fiat_account_dict)