Package org.openapitools.client.model
Class SortTaskQueryParametersDto
- java.lang.Object
-
- org.openapitools.client.model.SortTaskQueryParametersDto
-
public class SortTaskQueryParametersDto extends Object
Mandatory when `sortBy` is one of the following values: `processVariable`, `executionVariable`, `taskVariable`, `caseExecutionVariable` or `caseInstanceVariable`. Must be a JSON object with the properties `variable` and `type` where `variable` is a variable name and `type` is the name of a variable value type.
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_TYPEstatic StringSERIALIZED_NAME_VARIABLE
-
Constructor Summary
Constructors Constructor Description SortTaskQueryParametersDto()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetType()The name of the type of the variable value.StringgetVariable()The name of the variable to sort by.inthashCode()voidsetType(String type)voidsetVariable(String variable)StringtoString()SortTaskQueryParametersDtotype(String type)SortTaskQueryParametersDtovariable(String variable)
-
-
-
Field Detail
-
SERIALIZED_NAME_VARIABLE
public static final String SERIALIZED_NAME_VARIABLE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_TYPE
public static final String SERIALIZED_NAME_TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
variable
public SortTaskQueryParametersDto variable(String variable)
-
getVariable
public String getVariable()
The name of the variable to sort by.- Returns:
- variable
-
setVariable
public void setVariable(String variable)
-
type
public SortTaskQueryParametersDto type(String type)
-
getType
public String getType()
The name of the type of the variable value.- Returns:
- type
-
setType
public void setType(String type)
-
-