Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 968 Bytes

File metadata and controls

31 lines (22 loc) · 968 Bytes

AccessType

Properties

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

Example

from fireblocks.models.access_type import AccessType

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

# convert the object into a dict
access_type_dict = access_type_instance.to_dict()
# create an instance of AccessType from a dict
access_type_from_dict = AccessType.from_dict(access_type_dict)

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