Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.05 KB

File metadata and controls

34 lines (25 loc) · 1.05 KB

WorkspaceListItem

Properties

Name Type Description Notes
public_id str
name str
active bool
favorite bool
provision_status str
namespace str

Example

from hotdata.models.workspace_list_item import WorkspaceListItem

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

# convert the object into a dict
workspace_list_item_dict = workspace_list_item_instance.to_dict()
# create an instance of WorkspaceListItem from a dict
workspace_list_item_from_dict = WorkspaceListItem.from_dict(workspace_list_item_dict)

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