Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.72 KB

File metadata and controls

36 lines (27 loc) · 1.72 KB

ConnectedSingleAccountResponse

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]