| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Unique identifier of the connected account. | |
| name | str | Human-readable name of the connected account. | |
| provider_id | str | The ID of the venue the account belongs to. | |
| status | ConnectedAccountApprovalStatus | ||
| total_balance | ConnectedAccountTotalBalance | ||
| manifest | ConnectedAccountManifest | ||
| parent_id | str | The ID of the parent main account, if this is a sub account. | [optional] |
from fireblocks.models.connected_account import ConnectedAccount
# TODO update the JSON string below
json = "{}"
# create an instance of ConnectedAccount from a JSON string
connected_account_instance = ConnectedAccount.from_json(json)
# print the JSON string representation of the object
print(ConnectedAccount.to_json())
# convert the object into a dict
connected_account_dict = connected_account_instance.to_dict()
# create an instance of ConnectedAccount from a dict
connected_account_from_dict = ConnectedAccount.from_dict(connected_account_dict)