Package us.kbase.workspace
Class GetObjectInfo3Params
- java.lang.Object
-
- us.kbase.workspace.GetObjectInfo3Params
-
@Generated("com.googlecode.jsonschema2pojo") public class GetObjectInfo3Params extends Object
Original spec-file type: GetObjectInfo3Params
Input parameters for the "get_object_info3" function. Required arguments: list
objects - the objects for which the information should be fetched. Subsetting related parameters are ignored. Optional arguments: boolean infostruct - return information about the object as a structure rather than a tuple. Default false. If true, infos and paths will be null. boolean includeMetadata - include the user and admin metadata in the returned information. Default false. boolean ignoreErrors - Don't throw an exception if an object cannot be accessed; return null for that object's information and path instead. Default false.
-
-
Constructor Summary
Constructors Constructor Description GetObjectInfo3Params()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>
getAdditionalProperties()
Long
getIgnoreErrors()
Long
getIncludeMetadata()
Long
getInfostruct()
List<ObjectSpecification>
getObjects()
void
setAdditionalProperties(String name, Object value)
void
setIgnoreErrors(Long ignoreErrors)
void
setIncludeMetadata(Long includeMetadata)
void
setInfostruct(Long infostruct)
void
setObjects(List<ObjectSpecification> objects)
String
toString()
GetObjectInfo3Params
withIgnoreErrors(Long ignoreErrors)
GetObjectInfo3Params
withIncludeMetadata(Long includeMetadata)
GetObjectInfo3Params
withInfostruct(Long infostruct)
GetObjectInfo3Params
withObjects(List<ObjectSpecification> objects)
-
-
-
Method Detail
-
getObjects
public List<ObjectSpecification> getObjects()
-
setObjects
public void setObjects(List<ObjectSpecification> objects)
-
withObjects
public GetObjectInfo3Params withObjects(List<ObjectSpecification> objects)
-
getInfostruct
public Long getInfostruct()
-
setInfostruct
public void setInfostruct(Long infostruct)
-
withInfostruct
public GetObjectInfo3Params withInfostruct(Long infostruct)
-
getIncludeMetadata
public Long getIncludeMetadata()
-
setIncludeMetadata
public void setIncludeMetadata(Long includeMetadata)
-
withIncludeMetadata
public GetObjectInfo3Params withIncludeMetadata(Long includeMetadata)
-
getIgnoreErrors
public Long getIgnoreErrors()
-
setIgnoreErrors
public void setIgnoreErrors(Long ignoreErrors)
-
withIgnoreErrors
public GetObjectInfo3Params withIgnoreErrors(Long ignoreErrors)
-
-