Package us.kbase.workspace
Class GetNamesByPrefixParams
- java.lang.Object
-
- us.kbase.workspace.GetNamesByPrefixParams
-
@Generated("com.googlecode.jsonschema2pojo") public class GetNamesByPrefixParams extends Object
Original spec-file type: GetNamesByPrefixParams
Input parameters for the get_names_by_prefix function. Required arguments: list
workspaces - the workspaces to search. string prefix - the prefix of the object names to return. Optional arguments: boolean includeHidden - include names of hidden objects in the results. Default false.
-
-
Constructor Summary
Constructors Constructor Description GetNamesByPrefixParams()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>
getAdditionalProperties()
Long
getIncludeHidden()
String
getPrefix()
List<WorkspaceIdentity>
getWorkspaces()
void
setAdditionalProperties(String name, Object value)
void
setIncludeHidden(Long includeHidden)
void
setPrefix(String prefix)
void
setWorkspaces(List<WorkspaceIdentity> workspaces)
String
toString()
GetNamesByPrefixParams
withIncludeHidden(Long includeHidden)
GetNamesByPrefixParams
withPrefix(String prefix)
GetNamesByPrefixParams
withWorkspaces(List<WorkspaceIdentity> workspaces)
-
-
-
Method Detail
-
getWorkspaces
public List<WorkspaceIdentity> getWorkspaces()
-
setWorkspaces
public void setWorkspaces(List<WorkspaceIdentity> workspaces)
-
withWorkspaces
public GetNamesByPrefixParams withWorkspaces(List<WorkspaceIdentity> workspaces)
-
getPrefix
public String getPrefix()
-
setPrefix
public void setPrefix(String prefix)
-
withPrefix
public GetNamesByPrefixParams withPrefix(String prefix)
-
getIncludeHidden
public Long getIncludeHidden()
-
setIncludeHidden
public void setIncludeHidden(Long includeHidden)
-
withIncludeHidden
public GetNamesByPrefixParams withIncludeHidden(Long includeHidden)
-
-