Package us.kbase.workspace
Class GetNamesByPrefixParams
- java.lang.Object
-
- us.kbase.workspace.GetNamesByPrefixParams
-
@Generated("com.googlecode.jsonschema2pojo") public class GetNamesByPrefixParams extends ObjectOriginal spec-file type: GetNamesByPrefixParams
Input parameters for the get_names_by_prefix function. Required arguments: listworkspaces - 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()LonggetIncludeHidden()StringgetPrefix()List<WorkspaceIdentity>getWorkspaces()voidsetAdditionalProperties(String name, Object value)voidsetIncludeHidden(Long includeHidden)voidsetPrefix(String prefix)voidsetWorkspaces(List<WorkspaceIdentity> workspaces)StringtoString()GetNamesByPrefixParamswithIncludeHidden(Long includeHidden)GetNamesByPrefixParamswithPrefix(String prefix)GetNamesByPrefixParamswithWorkspaces(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)
-
-