| Name |
Type |
Description |
Notes |
| id |
int |
Internal workspace id |
[optional] |
| identifier |
str |
The unique workspace idenfitifer specified by your application |
[optional] |
| is_master_workspace |
bool |
True if a master workspace |
[optional] |
| created_at |
str |
|
[optional] |
from pdf_generator_api_client.models.workspace import Workspace
# TODO update the JSON string below
json = "{}"
# create an instance of Workspace from a JSON string
workspace_instance = Workspace.from_json(json)
# print the JSON string representation of the object
print(Workspace.to_json())
# convert the object into a dict
workspace_dict = workspace_instance.to_dict()
# create an instance of Workspace from a dict
workspace_from_dict = Workspace.from_dict(workspace_dict)
[Back to Model list] [Back to API list] [Back to README]