Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.54 KB

File metadata and controls

36 lines (27 loc) · 1.54 KB

AccountBasedAccessProvider

Provider integrated via Fireblocks connected accounts (accountBased is true).

Properties

Name Type Description Notes
id str Unique identifier for the provider
name str Display name of the provider
logo str URL to the logo image of the provider [optional]
account_based bool Indicates whether the provider access model is through accounts or directly
manifest Manifest
connected bool Whether the provider is currently connected.
accounts List[AccountBase]

Example

from fireblocks.models.account_based_access_provider import AccountBasedAccessProvider

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

# convert the object into a dict
account_based_access_provider_dict = account_based_access_provider_instance.to_dict()
# create an instance of AccountBasedAccessProvider from a dict
account_based_access_provider_from_dict = AccountBasedAccessProvider.from_dict(account_based_access_provider_dict)

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