Skip to content

Workspace

Schema for the output of a workspace containing all the workspace's data

Properties

NameTypeDescriptionNotes
idstr
namestr[optional]
descriptionstr[optional]
owner_idstr[optional]
ownersList[str][optional]
owners_emailsList[str][optional]
created_atdatetime
projectsList[Project][optional]
subscription_idstr[optional]
active_subscriptionbool[optional]
subscription_emailstr[optional]

Example

python
from syntheticusers.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 API list] [Back to SDK]

Released under the MIT License.