Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

WorkspaceAccessControl

A Workspace access control item

Properties

Name Type Description Notes
id str The identity id
role str A role

Example

from cosmotech_api.models.workspace_access_control import WorkspaceAccessControl

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

# convert the object into a dict
workspace_access_control_dict = workspace_access_control_instance.to_dict()
# create an instance of WorkspaceAccessControl from a dict
workspace_access_control_from_dict = WorkspaceAccessControl.from_dict(workspace_access_control_dict)

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