Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

WorkspaceWebApp.md

File metadata and controls

32 lines (23 loc) · 1.1 KB

WorkspaceWebApp

a Workspace Web Application

Properties

Name Type Description Notes
url str the Workspace Web Application URL
iframes Dict[str, object] a map of iframeKey/iframeURL [optional]
options Dict[str, object] free form options for Web Application [optional]

Example

from cosmotech_api.models.workspace_web_app import WorkspaceWebApp

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

# convert the object into a dict
workspace_web_app_dict = workspace_web_app_instance.to_dict()
# create an instance of WorkspaceWebApp from a dict
workspace_web_app_from_dict = WorkspaceWebApp.from_dict(workspace_web_app_dict)

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