Package us.kbase.workspace
Class ListWorkspaceIDsParams
- java.lang.Object
-
- us.kbase.workspace.ListWorkspaceIDsParams
-
@Generated("com.googlecode.jsonschema2pojo") public class ListWorkspaceIDsParams extends Object
Original spec-file type: ListWorkspaceIDsParams
Input parameters for the "list_workspace_ids" function. Optional parameters: permission perm - filter workspaces by minimum permission level. 'None' and 'readable' are ignored. boolean onlyGlobal - if onlyGlobal is true only include world readable workspaces. Defaults to false. If true, excludeGlobal is ignored. boolean excludeGlobal - if excludeGlobal is true exclude world readable workspaces. Defaults to true.
-
-
Constructor Summary
Constructors Constructor Description ListWorkspaceIDsParams()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>
getAdditionalProperties()
Long
getExcludeGlobal()
Long
getOnlyGlobal()
String
getPerm()
void
setAdditionalProperties(String name, Object value)
void
setExcludeGlobal(Long excludeGlobal)
void
setOnlyGlobal(Long onlyGlobal)
void
setPerm(String perm)
String
toString()
ListWorkspaceIDsParams
withExcludeGlobal(Long excludeGlobal)
ListWorkspaceIDsParams
withOnlyGlobal(Long onlyGlobal)
ListWorkspaceIDsParams
withPerm(String perm)
-
-
-
Method Detail
-
getPerm
public String getPerm()
-
setPerm
public void setPerm(String perm)
-
withPerm
public ListWorkspaceIDsParams withPerm(String perm)
-
getExcludeGlobal
public Long getExcludeGlobal()
-
setExcludeGlobal
public void setExcludeGlobal(Long excludeGlobal)
-
withExcludeGlobal
public ListWorkspaceIDsParams withExcludeGlobal(Long excludeGlobal)
-
getOnlyGlobal
public Long getOnlyGlobal()
-
setOnlyGlobal
public void setOnlyGlobal(Long onlyGlobal)
-
withOnlyGlobal
public ListWorkspaceIDsParams withOnlyGlobal(Long onlyGlobal)
-
-