Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

ConnectedSingleAccount

Properties

Name Type Description Notes
sub_accounts_ids List[str] IDs of sub-accounts associated with this connected account. [optional]

Example

from fireblocks.models.connected_single_account import ConnectedSingleAccount

# TODO update the JSON string below
json = "{}"
# create an instance of ConnectedSingleAccount from a JSON string
connected_single_account_instance = ConnectedSingleAccount.from_json(json)
# print the JSON string representation of the object
print(ConnectedSingleAccount.to_json())

# convert the object into a dict
connected_single_account_dict = connected_single_account_instance.to_dict()
# create an instance of ConnectedSingleAccount from a dict
connected_single_account_from_dict = ConnectedSingleAccount.from_dict(connected_single_account_dict)

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