Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1018 Bytes

File metadata and controls

31 lines (22 loc) · 1018 Bytes

AccountAccess

Properties

Name Type Description Notes
type str Indicates this uses account-based access
provider_id str The ID of the provider [optional]
account_id str The ID of the account

Example

from fireblocks.models.account_access import AccountAccess

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

# convert the object into a dict
account_access_dict = account_access_instance.to_dict()
# create an instance of AccountAccess from a dict
account_access_from_dict = AccountAccess.from_dict(account_access_dict)

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