Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.48 KB

File metadata and controls

30 lines (21 loc) · 1.48 KB

ConnectedAccountManifest

Properties

Name Type Description Notes
asset_types List[ConnectedAccountAssetType] Asset types supported by the connected account.
capabilities List[ConnectedAccountCapability] Features supported for the connected account. Logic: - If account capabilities include ramp -> TRADING - If account capabilities include transfers -> DEPOSITS - If account capabilities include transfersBlockchain / transfersFiat / transfersPeerAccounts / transfersInternal -> WITHDRAWALS

Example

from fireblocks.models.connected_account_manifest import ConnectedAccountManifest

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

# convert the object into a dict
connected_account_manifest_dict = connected_account_manifest_instance.to_dict()
# create an instance of ConnectedAccountManifest from a dict
connected_account_manifest_from_dict = ConnectedAccountManifest.from_dict(connected_account_manifest_dict)

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