Skip to content

Latest commit

History

History
32 lines (23 loc) · 1.05 KB

File metadata and controls

32 lines (23 loc) · 1.05 KB

Workspace

Properties

NameTypeDescriptionNotes
idintInternal workspace id[optional]
identifierstrThe unique workspace idenfitifer specified by your application[optional]
is_master_workspaceboolTrue if a master workspace[optional]
created_atstr[optional]

Example

frompdf_generator_api_client.models.workspaceimportWorkspace# TODO update the JSON string belowjson="{}"# create an instance of Workspace from a JSON stringworkspace_instance=Workspace.from_json(json)
# print the JSON string representation of the objectprint(Workspace.to_json())
# convert the object into a dictworkspace_dict=workspace_instance.to_dict()
# create an instance of Workspace from a dictworkspace_from_dict=Workspace.from_dict(workspace_dict)

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