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] |
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]