Package us.kbase.workspace
Class SetWorkspaceDescriptionParams
- java.lang.Object
-
- us.kbase.workspace.SetWorkspaceDescriptionParams
-
@Generated("com.googlecode.jsonschema2pojo") public class SetWorkspaceDescriptionParams extends Object
Original spec-file type: SetWorkspaceDescriptionParams
Input parameters for the "set_workspace_description" function. One, and only one, of the following is required: ws_id id - the numerical ID of the workspace. ws_name workspace - the name of the workspace. Optional arguments: string description - A free-text description of the workspace, 1000 characters max. Longer strings will be mercilessly and brutally truncated. If omitted, the description is set to null.
-
-
Constructor Summary
Constructors Constructor Description SetWorkspaceDescriptionParams()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>
getAdditionalProperties()
String
getDescription()
Long
getId()
String
getWorkspace()
void
setAdditionalProperties(String name, Object value)
void
setDescription(String description)
void
setId(Long id)
void
setWorkspace(String workspace)
String
toString()
SetWorkspaceDescriptionParams
withDescription(String description)
SetWorkspaceDescriptionParams
withId(Long id)
SetWorkspaceDescriptionParams
withWorkspace(String workspace)
-
-
-
Method Detail
-
getWorkspace
public String getWorkspace()
-
setWorkspace
public void setWorkspace(String workspace)
-
withWorkspace
public SetWorkspaceDescriptionParams withWorkspace(String workspace)
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
withId
public SetWorkspaceDescriptionParams withId(Long id)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
withDescription
public SetWorkspaceDescriptionParams withDescription(String description)
-
-