Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.42 KB

File metadata and controls

35 lines (26 loc) · 1.42 KB

ConnectedAccount

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]

Example

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)

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