Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.31 KB

WorkspaceSchema.md

File metadata and controls

39 lines (30 loc) · 1.31 KB

WorkspaceSchema

Properties

Name Type Description Notes
id int [optional]
name str [optional]
created_at datetime [optional]
updated_at datetime [optional]
status str Status of the workspace [optional]
acc_image str [optional]
date_format str [optional]
total_users int [optional]
path str [optional]
url str [optional]
last_accessed datetime [optional]

Example

from openapi_client.models.workspace_schema import WorkspaceSchema

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

# convert the object into a dict
workspace_schema_dict = workspace_schema_instance.to_dict()
# create an instance of WorkspaceSchema from a dict
workspace_schema_from_dict = WorkspaceSchema.from_dict(workspace_schema_dict)

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