# UpdateCollectionWorkspaceRequest ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **workspace** | **str** | The name of the workspace to be associated with the collection. | ## Example ```python from h2ogpte.rest_async.models.update_collection_workspace_request import UpdateCollectionWorkspaceRequest # TODO update the JSON string below json = "{}" # create an instance of UpdateCollectionWorkspaceRequest from a JSON string update_collection_workspace_request_instance = UpdateCollectionWorkspaceRequest.from_json(json) # print the JSON string representation of the object print(UpdateCollectionWorkspaceRequest.to_json()) # convert the object into a dict update_collection_workspace_request_dict = update_collection_workspace_request_instance.to_dict() # create an instance of UpdateCollectionWorkspaceRequest from a dict update_collection_workspace_request_from_dict = UpdateCollectionWorkspaceRequest.from_dict(update_collection_workspace_request_dict) ```