Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.13 KB

File metadata and controls

29 lines (21 loc) · 1.13 KB

UpdateWorkspaceRequest

Properties

Name Type Description Notes
workspace UpdateWorkspaceRequestWorkspace [optional]
workspace_write_mask WorkspaceWriteMask [optional]

Example

from ri.apiclient.models.update_workspace_request import UpdateWorkspaceRequest

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

# convert the object into a dict
update_workspace_request_dict = update_workspace_request_instance.to_dict()
# create an instance of UpdateWorkspaceRequest from a dict
update_workspace_request_from_dict = UpdateWorkspaceRequest.from_dict(update_workspace_request_dict)

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