| 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] |
| sub_accounts_ids | List[str] | IDs of sub-accounts associated with this connected account. | [optional] |
from fireblocks.models.connected_single_account_response import ConnectedSingleAccountResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ConnectedSingleAccountResponse from a JSON string
connected_single_account_response_instance = ConnectedSingleAccountResponse.from_json(json)
# print the JSON string representation of the object
print(ConnectedSingleAccountResponse.to_json())
# convert the object into a dict
connected_single_account_response_dict = connected_single_account_response_instance.to_dict()
# create an instance of ConnectedSingleAccountResponse from a dict
connected_single_account_response_from_dict = ConnectedSingleAccountResponse.from_dict(connected_single_account_response_dict)