Class HistoricTaskInstanceQueryDto

java.lang.Object
org.camunda.community.rest.client.dto.HistoricTaskInstanceQueryDto

@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2024-06-04T13:43:01.451833574Z[Etc/UTC]") public class HistoricTaskInstanceQueryDto extends Object
A Historic Task instance query which defines a list of Historic Task instances
  • Field Details

  • Constructor Details

    • HistoricTaskInstanceQueryDto

      public HistoricTaskInstanceQueryDto()
  • Method Details

    • taskId

      public HistoricTaskInstanceQueryDto taskId(String taskId)
    • getTaskId

      @Nullable public String getTaskId()
      Filter by task id.
      Returns:
      taskId
    • getTaskId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getTaskId_JsonNullable()
    • setTaskId_JsonNullable

      public void setTaskId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> taskId)
    • setTaskId

      public void setTaskId(String taskId)
    • taskParentTaskId

      public HistoricTaskInstanceQueryDto taskParentTaskId(String taskParentTaskId)
    • getTaskParentTaskId

      @Nullable public String getTaskParentTaskId()
      Filter by parent task id.
      Returns:
      taskParentTaskId
    • getTaskParentTaskId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getTaskParentTaskId_JsonNullable()
    • setTaskParentTaskId_JsonNullable

      public void setTaskParentTaskId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> taskParentTaskId)
    • setTaskParentTaskId

      public void setTaskParentTaskId(String taskParentTaskId)
    • processInstanceId

      public HistoricTaskInstanceQueryDto processInstanceId(String processInstanceId)
    • getProcessInstanceId

      @Nullable public String getProcessInstanceId()
      Filter by process instance id.
      Returns:
      processInstanceId
    • getProcessInstanceId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getProcessInstanceId_JsonNullable()
    • setProcessInstanceId_JsonNullable

      public void setProcessInstanceId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> processInstanceId)
    • setProcessInstanceId

      public void setProcessInstanceId(String processInstanceId)
    • processInstanceBusinessKey

      public HistoricTaskInstanceQueryDto processInstanceBusinessKey(String processInstanceBusinessKey)
    • getProcessInstanceBusinessKey

      @Nullable public String getProcessInstanceBusinessKey()
      Filter by process instance business key.
      Returns:
      processInstanceBusinessKey
    • getProcessInstanceBusinessKey_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getProcessInstanceBusinessKey_JsonNullable()
    • setProcessInstanceBusinessKey_JsonNullable

      public void setProcessInstanceBusinessKey_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> processInstanceBusinessKey)
    • setProcessInstanceBusinessKey

      public void setProcessInstanceBusinessKey(String processInstanceBusinessKey)
    • processInstanceBusinessKeyIn

      public HistoricTaskInstanceQueryDto processInstanceBusinessKeyIn(List<String> processInstanceBusinessKeyIn)
    • addProcessInstanceBusinessKeyInItem

      public HistoricTaskInstanceQueryDto addProcessInstanceBusinessKeyInItem(String processInstanceBusinessKeyInItem)
    • getProcessInstanceBusinessKeyIn

      @Nullable public List<String> getProcessInstanceBusinessKeyIn()
      Filter by process instances with one of the give business keys. The keys need to be in a comma-separated list.
      Returns:
      processInstanceBusinessKeyIn
    • getProcessInstanceBusinessKeyIn_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<List<String>> getProcessInstanceBusinessKeyIn_JsonNullable()
    • setProcessInstanceBusinessKeyIn_JsonNullable

      public void setProcessInstanceBusinessKeyIn_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<List<String>> processInstanceBusinessKeyIn)
    • setProcessInstanceBusinessKeyIn

      public void setProcessInstanceBusinessKeyIn(List<String> processInstanceBusinessKeyIn)
    • processInstanceBusinessKeyLike

      public HistoricTaskInstanceQueryDto processInstanceBusinessKeyLike(String processInstanceBusinessKeyLike)
    • getProcessInstanceBusinessKeyLike

      @Nullable public String getProcessInstanceBusinessKeyLike()
      Filter by process instance business key that has the parameter value as a substring.
      Returns:
      processInstanceBusinessKeyLike
    • getProcessInstanceBusinessKeyLike_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getProcessInstanceBusinessKeyLike_JsonNullable()
    • setProcessInstanceBusinessKeyLike_JsonNullable

      public void setProcessInstanceBusinessKeyLike_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> processInstanceBusinessKeyLike)
    • setProcessInstanceBusinessKeyLike

      public void setProcessInstanceBusinessKeyLike(String processInstanceBusinessKeyLike)
    • executionId

      public HistoricTaskInstanceQueryDto executionId(String executionId)
    • getExecutionId

      @Nullable public String getExecutionId()
      Filter by the id of the execution that executed the task.
      Returns:
      executionId
    • getExecutionId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getExecutionId_JsonNullable()
    • setExecutionId_JsonNullable

      public void setExecutionId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> executionId)
    • setExecutionId

      public void setExecutionId(String executionId)
    • processDefinitionId

      public HistoricTaskInstanceQueryDto processDefinitionId(String processDefinitionId)
    • getProcessDefinitionId

      @Nullable public String getProcessDefinitionId()
      Filter by process definition id.
      Returns:
      processDefinitionId
    • getProcessDefinitionId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getProcessDefinitionId_JsonNullable()
    • setProcessDefinitionId_JsonNullable

      public void setProcessDefinitionId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> processDefinitionId)
    • setProcessDefinitionId

      public void setProcessDefinitionId(String processDefinitionId)
    • processDefinitionKey

      public HistoricTaskInstanceQueryDto processDefinitionKey(String processDefinitionKey)
    • getProcessDefinitionKey

      @Nullable public String getProcessDefinitionKey()
      Restrict to tasks that belong to a process definition with the given key.
      Returns:
      processDefinitionKey
    • getProcessDefinitionKey_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getProcessDefinitionKey_JsonNullable()
    • setProcessDefinitionKey_JsonNullable

      public void setProcessDefinitionKey_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> processDefinitionKey)
    • setProcessDefinitionKey

      public void setProcessDefinitionKey(String processDefinitionKey)
    • processDefinitionName

      public HistoricTaskInstanceQueryDto processDefinitionName(String processDefinitionName)
    • getProcessDefinitionName

      @Nullable public String getProcessDefinitionName()
      Restrict to tasks that belong to a process definition with the given name.
      Returns:
      processDefinitionName
    • getProcessDefinitionName_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getProcessDefinitionName_JsonNullable()
    • setProcessDefinitionName_JsonNullable

      public void setProcessDefinitionName_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> processDefinitionName)
    • setProcessDefinitionName

      public void setProcessDefinitionName(String processDefinitionName)
    • caseInstanceId

      public HistoricTaskInstanceQueryDto caseInstanceId(String caseInstanceId)
    • getCaseInstanceId

      @Nullable public String getCaseInstanceId()
      Filter by case instance id.
      Returns:
      caseInstanceId
    • getCaseInstanceId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getCaseInstanceId_JsonNullable()
    • setCaseInstanceId_JsonNullable

      public void setCaseInstanceId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> caseInstanceId)
    • setCaseInstanceId

      public void setCaseInstanceId(String caseInstanceId)
    • caseExecutionId

      public HistoricTaskInstanceQueryDto caseExecutionId(String caseExecutionId)
    • getCaseExecutionId

      @Nullable public String getCaseExecutionId()
      Filter by the id of the case execution that executed the task.
      Returns:
      caseExecutionId
    • getCaseExecutionId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getCaseExecutionId_JsonNullable()
    • setCaseExecutionId_JsonNullable

      public void setCaseExecutionId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> caseExecutionId)
    • setCaseExecutionId

      public void setCaseExecutionId(String caseExecutionId)
    • caseDefinitionId

      public HistoricTaskInstanceQueryDto caseDefinitionId(String caseDefinitionId)
    • getCaseDefinitionId

      @Nullable public String getCaseDefinitionId()
      Filter by case definition id.
      Returns:
      caseDefinitionId
    • getCaseDefinitionId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getCaseDefinitionId_JsonNullable()
    • setCaseDefinitionId_JsonNullable

      public void setCaseDefinitionId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> caseDefinitionId)
    • setCaseDefinitionId

      public void setCaseDefinitionId(String caseDefinitionId)
    • caseDefinitionKey

      public HistoricTaskInstanceQueryDto caseDefinitionKey(String caseDefinitionKey)
    • getCaseDefinitionKey

      @Nullable public String getCaseDefinitionKey()
      Restrict to tasks that belong to a case definition with the given key.
      Returns:
      caseDefinitionKey
    • getCaseDefinitionKey_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getCaseDefinitionKey_JsonNullable()
    • setCaseDefinitionKey_JsonNullable

      public void setCaseDefinitionKey_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> caseDefinitionKey)
    • setCaseDefinitionKey

      public void setCaseDefinitionKey(String caseDefinitionKey)
    • caseDefinitionName

      public HistoricTaskInstanceQueryDto caseDefinitionName(String caseDefinitionName)
    • getCaseDefinitionName

      @Nullable public String getCaseDefinitionName()
      Restrict to tasks that belong to a case definition with the given name.
      Returns:
      caseDefinitionName
    • getCaseDefinitionName_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getCaseDefinitionName_JsonNullable()
    • setCaseDefinitionName_JsonNullable

      public void setCaseDefinitionName_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> caseDefinitionName)
    • setCaseDefinitionName

      public void setCaseDefinitionName(String caseDefinitionName)
    • activityInstanceIdIn

      public HistoricTaskInstanceQueryDto activityInstanceIdIn(List<String> activityInstanceIdIn)
    • addActivityInstanceIdInItem

      public HistoricTaskInstanceQueryDto addActivityInstanceIdInItem(String activityInstanceIdInItem)
    • getActivityInstanceIdIn

      @Nullable public List<String> getActivityInstanceIdIn()
      Only include tasks which belong to one of the passed activity instance ids.
      Returns:
      activityInstanceIdIn
    • getActivityInstanceIdIn_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<List<String>> getActivityInstanceIdIn_JsonNullable()
    • setActivityInstanceIdIn_JsonNullable

      public void setActivityInstanceIdIn_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<List<String>> activityInstanceIdIn)
    • setActivityInstanceIdIn

      public void setActivityInstanceIdIn(List<String> activityInstanceIdIn)
    • taskName

      public HistoricTaskInstanceQueryDto taskName(String taskName)
    • getTaskName

      @Nullable public String getTaskName()
      Restrict to tasks that have the given name.
      Returns:
      taskName
    • getTaskName_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getTaskName_JsonNullable()
    • setTaskName_JsonNullable

      public void setTaskName_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> taskName)
    • setTaskName

      public void setTaskName(String taskName)
    • taskNameLike

      public HistoricTaskInstanceQueryDto taskNameLike(String taskNameLike)
    • getTaskNameLike

      @Nullable public String getTaskNameLike()
      Restrict to tasks that have a name with the given parameter value as substring.
      Returns:
      taskNameLike
    • getTaskNameLike_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getTaskNameLike_JsonNullable()
    • setTaskNameLike_JsonNullable

      public void setTaskNameLike_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> taskNameLike)
    • setTaskNameLike

      public void setTaskNameLike(String taskNameLike)
    • taskDescription

      public HistoricTaskInstanceQueryDto taskDescription(String taskDescription)
    • getTaskDescription

      @Nullable public String getTaskDescription()
      Restrict to tasks that have the given description.
      Returns:
      taskDescription
    • getTaskDescription_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getTaskDescription_JsonNullable()
    • setTaskDescription_JsonNullable

      public void setTaskDescription_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> taskDescription)
    • setTaskDescription

      public void setTaskDescription(String taskDescription)
    • taskDescriptionLike

      public HistoricTaskInstanceQueryDto taskDescriptionLike(String taskDescriptionLike)
    • getTaskDescriptionLike

      @Nullable public String getTaskDescriptionLike()
      Restrict to tasks that have a description that has the parameter value as a substring.
      Returns:
      taskDescriptionLike
    • getTaskDescriptionLike_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getTaskDescriptionLike_JsonNullable()
    • setTaskDescriptionLike_JsonNullable

      public void setTaskDescriptionLike_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> taskDescriptionLike)
    • setTaskDescriptionLike

      public void setTaskDescriptionLike(String taskDescriptionLike)
    • taskDefinitionKey

      public HistoricTaskInstanceQueryDto taskDefinitionKey(String taskDefinitionKey)
    • getTaskDefinitionKey

      @Nullable public String getTaskDefinitionKey()
      Restrict to tasks that have the given key.
      Returns:
      taskDefinitionKey
    • getTaskDefinitionKey_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getTaskDefinitionKey_JsonNullable()
    • setTaskDefinitionKey_JsonNullable

      public void setTaskDefinitionKey_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> taskDefinitionKey)
    • setTaskDefinitionKey

      public void setTaskDefinitionKey(String taskDefinitionKey)
    • taskDefinitionKeyIn

      public HistoricTaskInstanceQueryDto taskDefinitionKeyIn(List<String> taskDefinitionKeyIn)
    • addTaskDefinitionKeyInItem

      public HistoricTaskInstanceQueryDto addTaskDefinitionKeyInItem(String taskDefinitionKeyInItem)
    • getTaskDefinitionKeyIn

      @Nullable public List<String> getTaskDefinitionKeyIn()
      Restrict to tasks that have one of the passed task definition keys.
      Returns:
      taskDefinitionKeyIn
    • getTaskDefinitionKeyIn_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<List<String>> getTaskDefinitionKeyIn_JsonNullable()
    • setTaskDefinitionKeyIn_JsonNullable

      public void setTaskDefinitionKeyIn_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<List<String>> taskDefinitionKeyIn)
    • setTaskDefinitionKeyIn

      public void setTaskDefinitionKeyIn(List<String> taskDefinitionKeyIn)
    • taskDeleteReason

      public HistoricTaskInstanceQueryDto taskDeleteReason(String taskDeleteReason)
    • getTaskDeleteReason

      @Nullable public String getTaskDeleteReason()
      Restrict to tasks that have the given delete reason.
      Returns:
      taskDeleteReason
    • getTaskDeleteReason_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getTaskDeleteReason_JsonNullable()
    • setTaskDeleteReason_JsonNullable

      public void setTaskDeleteReason_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> taskDeleteReason)
    • setTaskDeleteReason

      public void setTaskDeleteReason(String taskDeleteReason)
    • taskDeleteReasonLike

      public HistoricTaskInstanceQueryDto taskDeleteReasonLike(String taskDeleteReasonLike)
    • getTaskDeleteReasonLike

      @Nullable public String getTaskDeleteReasonLike()
      Restrict to tasks that have a delete reason that has the parameter value as a substring.
      Returns:
      taskDeleteReasonLike
    • getTaskDeleteReasonLike_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getTaskDeleteReasonLike_JsonNullable()
    • setTaskDeleteReasonLike_JsonNullable

      public void setTaskDeleteReasonLike_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> taskDeleteReasonLike)
    • setTaskDeleteReasonLike

      public void setTaskDeleteReasonLike(String taskDeleteReasonLike)
    • taskAssignee

      public HistoricTaskInstanceQueryDto taskAssignee(String taskAssignee)
    • getTaskAssignee

      @Nullable public String getTaskAssignee()
      Restrict to tasks that the given user is assigned to.
      Returns:
      taskAssignee
    • getTaskAssignee_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getTaskAssignee_JsonNullable()
    • setTaskAssignee_JsonNullable

      public void setTaskAssignee_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> taskAssignee)
    • setTaskAssignee

      public void setTaskAssignee(String taskAssignee)
    • taskAssigneeLike

      public HistoricTaskInstanceQueryDto taskAssigneeLike(String taskAssigneeLike)
    • getTaskAssigneeLike

      @Nullable public String getTaskAssigneeLike()
      Restrict to tasks that are assigned to users with the parameter value as a substring.
      Returns:
      taskAssigneeLike
    • getTaskAssigneeLike_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getTaskAssigneeLike_JsonNullable()
    • setTaskAssigneeLike_JsonNullable

      public void setTaskAssigneeLike_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> taskAssigneeLike)
    • setTaskAssigneeLike

      public void setTaskAssigneeLike(String taskAssigneeLike)
    • taskOwner

      public HistoricTaskInstanceQueryDto taskOwner(String taskOwner)
    • getTaskOwner

      @Nullable public String getTaskOwner()
      Restrict to tasks that the given user owns.
      Returns:
      taskOwner
    • getTaskOwner_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getTaskOwner_JsonNullable()
    • setTaskOwner_JsonNullable

      public void setTaskOwner_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> taskOwner)
    • setTaskOwner

      public void setTaskOwner(String taskOwner)
    • taskOwnerLike

      public HistoricTaskInstanceQueryDto taskOwnerLike(String taskOwnerLike)
    • getTaskOwnerLike

      @Nullable public String getTaskOwnerLike()
      Restrict to tasks that are owned by users with the parameter value as a substring.
      Returns:
      taskOwnerLike
    • getTaskOwnerLike_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getTaskOwnerLike_JsonNullable()
    • setTaskOwnerLike_JsonNullable

      public void setTaskOwnerLike_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> taskOwnerLike)
    • setTaskOwnerLike

      public void setTaskOwnerLike(String taskOwnerLike)
    • taskPriority

      public HistoricTaskInstanceQueryDto taskPriority(Integer taskPriority)
    • getTaskPriority

      @Nullable public Integer getTaskPriority()
      Restrict to tasks that have the given priority.
      Returns:
      taskPriority
    • getTaskPriority_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Integer> getTaskPriority_JsonNullable()
    • setTaskPriority_JsonNullable

      public void setTaskPriority_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Integer> taskPriority)
    • setTaskPriority

      public void setTaskPriority(Integer taskPriority)
    • assigned

      public HistoricTaskInstanceQueryDto assigned(Boolean assigned)
    • getAssigned

      @Nullable public Boolean getAssigned()
      If set to `true`, restricts the query to all tasks that are assigned.
      Returns:
      assigned
    • getAssigned_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getAssigned_JsonNullable()
    • setAssigned_JsonNullable

      public void setAssigned_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> assigned)
    • setAssigned

      public void setAssigned(Boolean assigned)
    • unassigned

      public HistoricTaskInstanceQueryDto unassigned(Boolean unassigned)
    • getUnassigned

      @Nullable public Boolean getUnassigned()
      If set to `true`, restricts the query to all tasks that are unassigned.
      Returns:
      unassigned
    • getUnassigned_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getUnassigned_JsonNullable()
    • setUnassigned_JsonNullable

      public void setUnassigned_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> unassigned)
    • setUnassigned

      public void setUnassigned(Boolean unassigned)
    • finished

      public HistoricTaskInstanceQueryDto finished(Boolean finished)
    • getFinished

      @Nullable public Boolean getFinished()
      Only include finished tasks. Value may only be `true`, as `false` is the default behavior.
      Returns:
      finished
    • getFinished_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getFinished_JsonNullable()
    • setFinished_JsonNullable

      public void setFinished_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> finished)
    • setFinished

      public void setFinished(Boolean finished)
    • unfinished

      public HistoricTaskInstanceQueryDto unfinished(Boolean unfinished)
    • getUnfinished

      @Nullable public Boolean getUnfinished()
      Only include unfinished tasks. Value may only be `true`, as `false` is the default behavior.
      Returns:
      unfinished
    • getUnfinished_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getUnfinished_JsonNullable()
    • setUnfinished_JsonNullable

      public void setUnfinished_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> unfinished)
    • setUnfinished

      public void setUnfinished(Boolean unfinished)
    • processFinished

      public HistoricTaskInstanceQueryDto processFinished(Boolean processFinished)
    • getProcessFinished

      @Nullable public Boolean getProcessFinished()
      Only include tasks of finished processes. Value may only be `true`, as `false` is the default behavior.
      Returns:
      processFinished
    • getProcessFinished_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getProcessFinished_JsonNullable()
    • setProcessFinished_JsonNullable

      public void setProcessFinished_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> processFinished)
    • setProcessFinished

      public void setProcessFinished(Boolean processFinished)
    • processUnfinished

      public HistoricTaskInstanceQueryDto processUnfinished(Boolean processUnfinished)
    • getProcessUnfinished

      @Nullable public Boolean getProcessUnfinished()
      Only include tasks of unfinished processes. Value may only be `true`, as `false` is the default behavior.
      Returns:
      processUnfinished
    • getProcessUnfinished_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getProcessUnfinished_JsonNullable()
    • setProcessUnfinished_JsonNullable

      public void setProcessUnfinished_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> processUnfinished)
    • setProcessUnfinished

      public void setProcessUnfinished(Boolean processUnfinished)
    • taskDueDate

      public HistoricTaskInstanceQueryDto taskDueDate(OffsetDateTime taskDueDate)
    • getTaskDueDate

      @Nullable public OffsetDateTime getTaskDueDate()
      Restrict to tasks that are due on the given date. By [default](https://docs.camunda.org/manual/7.21/reference/rest/overview/date-format/), the date must have the format `yyyy-MM-dd'T'HH:mm:ss.SSSZ`, e.g., `2013-01-23T14:42:45.000+0200`.
      Returns:
      taskDueDate
    • getTaskDueDate_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> getTaskDueDate_JsonNullable()
    • setTaskDueDate_JsonNullable

      public void setTaskDueDate_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> taskDueDate)
    • setTaskDueDate

      public void setTaskDueDate(OffsetDateTime taskDueDate)
    • taskDueDateBefore

      public HistoricTaskInstanceQueryDto taskDueDateBefore(OffsetDateTime taskDueDateBefore)
    • getTaskDueDateBefore

      @Nullable public OffsetDateTime getTaskDueDateBefore()
      Restrict to tasks that are due before the given date. By [default](https://docs.camunda.org/manual/7.21/reference/rest/overview/date-format/), the date must have the format `yyyy-MM-dd'T'HH:mm:ss.SSSZ`, e.g., `2013-01-23T14:42:45.000+0200`.
      Returns:
      taskDueDateBefore
    • getTaskDueDateBefore_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> getTaskDueDateBefore_JsonNullable()
    • setTaskDueDateBefore_JsonNullable

      public void setTaskDueDateBefore_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> taskDueDateBefore)
    • setTaskDueDateBefore

      public void setTaskDueDateBefore(OffsetDateTime taskDueDateBefore)
    • taskDueDateAfter

      public HistoricTaskInstanceQueryDto taskDueDateAfter(OffsetDateTime taskDueDateAfter)
    • getTaskDueDateAfter

      @Nullable public OffsetDateTime getTaskDueDateAfter()
      Restrict to tasks that are due after the given date. By [default](https://docs.camunda.org/manual/7.21/reference/rest/overview/date-format/), the date must have the format `yyyy-MM-dd'T'HH:mm:ss.SSSZ`, e.g., `2013-01-23T14:42:45.000+0200`.
      Returns:
      taskDueDateAfter
    • getTaskDueDateAfter_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> getTaskDueDateAfter_JsonNullable()
    • setTaskDueDateAfter_JsonNullable

      public void setTaskDueDateAfter_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> taskDueDateAfter)
    • setTaskDueDateAfter

      public void setTaskDueDateAfter(OffsetDateTime taskDueDateAfter)
    • withoutTaskDueDate

      public HistoricTaskInstanceQueryDto withoutTaskDueDate(Boolean withoutTaskDueDate)
    • getWithoutTaskDueDate

      @Nullable public Boolean getWithoutTaskDueDate()
      Only include tasks which have no due date. Value may only be `true`, as `false` is the default behavior.
      Returns:
      withoutTaskDueDate
    • getWithoutTaskDueDate_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getWithoutTaskDueDate_JsonNullable()
    • setWithoutTaskDueDate_JsonNullable

      public void setWithoutTaskDueDate_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> withoutTaskDueDate)
    • setWithoutTaskDueDate

      public void setWithoutTaskDueDate(Boolean withoutTaskDueDate)
    • taskFollowUpDate

      public HistoricTaskInstanceQueryDto taskFollowUpDate(OffsetDateTime taskFollowUpDate)
    • getTaskFollowUpDate

      @Nullable public OffsetDateTime getTaskFollowUpDate()
      Restrict to tasks that have a followUp date on the given date. By [default](https://docs.camunda.org/manual/7.21/reference/rest/overview/date-format/), the date must have the format `yyyy-MM-dd'T'HH:mm:ss.SSSZ`, e.g., `2013-01-23T14:42:45.000+0200`.
      Returns:
      taskFollowUpDate
    • getTaskFollowUpDate_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> getTaskFollowUpDate_JsonNullable()
    • setTaskFollowUpDate_JsonNullable

      public void setTaskFollowUpDate_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> taskFollowUpDate)
    • setTaskFollowUpDate

      public void setTaskFollowUpDate(OffsetDateTime taskFollowUpDate)
    • taskFollowUpDateBefore

      public HistoricTaskInstanceQueryDto taskFollowUpDateBefore(OffsetDateTime taskFollowUpDateBefore)
    • getTaskFollowUpDateBefore

      @Nullable public OffsetDateTime getTaskFollowUpDateBefore()
      Restrict to tasks that have a followUp date before the given date. By [default](https://docs.camunda.org/manual/7.21/reference/rest/overview/date-format/), the date must have the format `yyyy-MM-dd'T'HH:mm:ss.SSSZ`, e.g., `2013-01-23T14:42:45.000+0200`.
      Returns:
      taskFollowUpDateBefore
    • getTaskFollowUpDateBefore_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> getTaskFollowUpDateBefore_JsonNullable()
    • setTaskFollowUpDateBefore_JsonNullable

      public void setTaskFollowUpDateBefore_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> taskFollowUpDateBefore)
    • setTaskFollowUpDateBefore

      public void setTaskFollowUpDateBefore(OffsetDateTime taskFollowUpDateBefore)
    • taskFollowUpDateAfter

      public HistoricTaskInstanceQueryDto taskFollowUpDateAfter(OffsetDateTime taskFollowUpDateAfter)
    • getTaskFollowUpDateAfter

      @Nullable public OffsetDateTime getTaskFollowUpDateAfter()
      Restrict to tasks that have a followUp date after the given date. By [default](https://docs.camunda.org/manual/7.21/reference/rest/overview/date-format/), the date must have the format `yyyy-MM-dd'T'HH:mm:ss.SSSZ`, e.g., `2013-01-23T14:42:45.000+0200`.
      Returns:
      taskFollowUpDateAfter
    • getTaskFollowUpDateAfter_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> getTaskFollowUpDateAfter_JsonNullable()
    • setTaskFollowUpDateAfter_JsonNullable

      public void setTaskFollowUpDateAfter_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> taskFollowUpDateAfter)
    • setTaskFollowUpDateAfter

      public void setTaskFollowUpDateAfter(OffsetDateTime taskFollowUpDateAfter)
    • startedBefore

      public HistoricTaskInstanceQueryDto startedBefore(OffsetDateTime startedBefore)
    • getStartedBefore

      @Nullable public OffsetDateTime getStartedBefore()
      Restrict to tasks that were started before the given date. By [default](https://docs.camunda.org/manual/7.21/reference/rest/overview/date-format/), the date must have the format `yyyy-MM-dd'T'HH:mm:ss.SSSZ`, e.g., `2013-01-23T14:42:45.000+0200`.
      Returns:
      startedBefore
    • getStartedBefore_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> getStartedBefore_JsonNullable()
    • setStartedBefore_JsonNullable

      public void setStartedBefore_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> startedBefore)
    • setStartedBefore

      public void setStartedBefore(OffsetDateTime startedBefore)
    • startedAfter

      public HistoricTaskInstanceQueryDto startedAfter(OffsetDateTime startedAfter)
    • getStartedAfter

      @Nullable public OffsetDateTime getStartedAfter()
      Restrict to tasks that were started after the given date. By [default](https://docs.camunda.org/manual/7.21/reference/rest/overview/date-format/), the date must have the format `yyyy-MM-dd'T'HH:mm:ss.SSSZ`, e.g., `2013-01-23T14:42:45.000+0200`.
      Returns:
      startedAfter
    • getStartedAfter_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> getStartedAfter_JsonNullable()
    • setStartedAfter_JsonNullable

      public void setStartedAfter_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> startedAfter)
    • setStartedAfter

      public void setStartedAfter(OffsetDateTime startedAfter)
    • finishedBefore

      public HistoricTaskInstanceQueryDto finishedBefore(OffsetDateTime finishedBefore)
    • getFinishedBefore

      @Nullable public OffsetDateTime getFinishedBefore()
      Restrict to tasks that were finished before the given date. By [default](https://docs.camunda.org/manual/7.21/reference/rest/overview/date-format/), the date must have the format `yyyy-MM-dd'T'HH:mm:ss.SSSZ`, e.g., `2013-01-23T14:42:45.000+0200`.
      Returns:
      finishedBefore
    • getFinishedBefore_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> getFinishedBefore_JsonNullable()
    • setFinishedBefore_JsonNullable

      public void setFinishedBefore_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> finishedBefore)
    • setFinishedBefore

      public void setFinishedBefore(OffsetDateTime finishedBefore)
    • finishedAfter

      public HistoricTaskInstanceQueryDto finishedAfter(OffsetDateTime finishedAfter)
    • getFinishedAfter

      @Nullable public OffsetDateTime getFinishedAfter()
      Restrict to tasks that were finished after the given date. By [default](https://docs.camunda.org/manual/7.21/reference/rest/overview/date-format/), the date must have the format `yyyy-MM-dd'T'HH:mm:ss.SSSZ`, e.g., `2013-01-23T14:42:45.000+0200`.
      Returns:
      finishedAfter
    • getFinishedAfter_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> getFinishedAfter_JsonNullable()
    • setFinishedAfter_JsonNullable

      public void setFinishedAfter_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<OffsetDateTime> finishedAfter)
    • setFinishedAfter

      public void setFinishedAfter(OffsetDateTime finishedAfter)
    • tenantIdIn

      public HistoricTaskInstanceQueryDto tenantIdIn(List<String> tenantIdIn)
    • addTenantIdInItem

      public HistoricTaskInstanceQueryDto addTenantIdInItem(String tenantIdInItem)
    • getTenantIdIn

      @Nullable public List<String> getTenantIdIn()
      Filter by a list of tenant ids. A task instance must have one of the given tenant ids.
      Returns:
      tenantIdIn
    • getTenantIdIn_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<List<String>> getTenantIdIn_JsonNullable()
    • setTenantIdIn_JsonNullable

      public void setTenantIdIn_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<List<String>> tenantIdIn)
    • setTenantIdIn

      public void setTenantIdIn(List<String> tenantIdIn)
    • withoutTenantId

      public HistoricTaskInstanceQueryDto withoutTenantId(Boolean withoutTenantId)
    • getWithoutTenantId

      @Nullable public Boolean getWithoutTenantId()
      Only include historic task instances that belong to no tenant. Value may only be `true`, as `false` is the default behavior.
      Returns:
      withoutTenantId
    • getWithoutTenantId_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getWithoutTenantId_JsonNullable()
    • setWithoutTenantId_JsonNullable

      public void setWithoutTenantId_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> withoutTenantId)
    • setWithoutTenantId

      public void setWithoutTenantId(Boolean withoutTenantId)
    • taskVariables

      public HistoricTaskInstanceQueryDto taskVariables(List<VariableQueryParameterDto> taskVariables)
    • addTaskVariablesItem

      public HistoricTaskInstanceQueryDto addTaskVariablesItem(VariableQueryParameterDto taskVariablesItem)
    • getTaskVariables

      @Nullable public List<VariableQueryParameterDto> getTaskVariables()
      Only include tasks that have variables with certain values. Variable filtering expressions are comma-separated and are structured as follows: A valid parameter value has the form `key_operator_value`. `key` is the variable name, `operator` is the comparison operator to be used and `value` the variable value. **Note:** Values are always treated as `String` objects on server side. Valid operator values are: * `eq` - equal to; * `neq` - not equal to; * `gt` - greater than; * `gteq` - greater than or equal to; * `lt` - lower than; * `lteq` - lower than or equal to; * `like`. `key` and `value` may not contain underscore or comma characters.
      Returns:
      taskVariables
    • getTaskVariables_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<List<VariableQueryParameterDto>> getTaskVariables_JsonNullable()
    • setTaskVariables_JsonNullable

      public void setTaskVariables_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<List<VariableQueryParameterDto>> taskVariables)
    • setTaskVariables

      public void setTaskVariables(List<VariableQueryParameterDto> taskVariables)
    • processVariables

      public HistoricTaskInstanceQueryDto processVariables(List<VariableQueryParameterDto> processVariables)
    • addProcessVariablesItem

      public HistoricTaskInstanceQueryDto addProcessVariablesItem(VariableQueryParameterDto processVariablesItem)
    • getProcessVariables

      @Nullable public List<VariableQueryParameterDto> getProcessVariables()
      Only include tasks that belong to process instances that have variables with certain values. Variable filtering expressions are comma-separated and are structured as follows: A valid parameter value has the form `key_operator_value`. `key` is the variable name, `operator` is the comparison operator to be used and `value` the variable value. **Note:** Values are always treated as `String` objects on server side. Valid operator values are: * `eq` - equal to; * `neq` - not equal to; * `gt` - greater than; * `gteq` - greater than or equal to; * `lt` - lower than; * `lteq` - lower than or equal to; * `like`; * `notLike`. `key` and `value` may not contain underscore or comma characters.
      Returns:
      processVariables
    • getProcessVariables_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<List<VariableQueryParameterDto>> getProcessVariables_JsonNullable()
    • setProcessVariables_JsonNullable

      public void setProcessVariables_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<List<VariableQueryParameterDto>> processVariables)
    • setProcessVariables

      public void setProcessVariables(List<VariableQueryParameterDto> processVariables)
    • variableNamesIgnoreCase

      public HistoricTaskInstanceQueryDto variableNamesIgnoreCase(Boolean variableNamesIgnoreCase)
    • getVariableNamesIgnoreCase

      @Nullable public Boolean getVariableNamesIgnoreCase()
      Match the variable name provided in `taskVariables` and `processVariables` case- insensitively. If set to `true` **variableName** and **variablename** are treated as equal.
      Returns:
      variableNamesIgnoreCase
    • getVariableNamesIgnoreCase_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getVariableNamesIgnoreCase_JsonNullable()
    • setVariableNamesIgnoreCase_JsonNullable

      public void setVariableNamesIgnoreCase_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> variableNamesIgnoreCase)
    • setVariableNamesIgnoreCase

      public void setVariableNamesIgnoreCase(Boolean variableNamesIgnoreCase)
    • variableValuesIgnoreCase

      public HistoricTaskInstanceQueryDto variableValuesIgnoreCase(Boolean variableValuesIgnoreCase)
    • getVariableValuesIgnoreCase

      @Nullable public Boolean getVariableValuesIgnoreCase()
      Match the variable value provided in `taskVariables` and `processVariables` case- insensitively. If set to `true` **variableValue** and **variablevalue** are treated as equal.
      Returns:
      variableValuesIgnoreCase
    • getVariableValuesIgnoreCase_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getVariableValuesIgnoreCase_JsonNullable()
    • setVariableValuesIgnoreCase_JsonNullable

      public void setVariableValuesIgnoreCase_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> variableValuesIgnoreCase)
    • setVariableValuesIgnoreCase

      public void setVariableValuesIgnoreCase(Boolean variableValuesIgnoreCase)
    • taskInvolvedUser

      public HistoricTaskInstanceQueryDto taskInvolvedUser(String taskInvolvedUser)
    • getTaskInvolvedUser

      @Nullable public String getTaskInvolvedUser()
      Restrict to tasks with a historic identity link to the given user.
      Returns:
      taskInvolvedUser
    • getTaskInvolvedUser_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getTaskInvolvedUser_JsonNullable()
    • setTaskInvolvedUser_JsonNullable

      public void setTaskInvolvedUser_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> taskInvolvedUser)
    • setTaskInvolvedUser

      public void setTaskInvolvedUser(String taskInvolvedUser)
    • taskInvolvedGroup

      public HistoricTaskInstanceQueryDto taskInvolvedGroup(String taskInvolvedGroup)
    • getTaskInvolvedGroup

      @Nullable public String getTaskInvolvedGroup()
      Restrict to tasks with a historic identity link to the given group.
      Returns:
      taskInvolvedGroup
    • getTaskInvolvedGroup_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getTaskInvolvedGroup_JsonNullable()
    • setTaskInvolvedGroup_JsonNullable

      public void setTaskInvolvedGroup_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> taskInvolvedGroup)
    • setTaskInvolvedGroup

      public void setTaskInvolvedGroup(String taskInvolvedGroup)
    • taskHadCandidateUser

      public HistoricTaskInstanceQueryDto taskHadCandidateUser(String taskHadCandidateUser)
    • getTaskHadCandidateUser

      @Nullable public String getTaskHadCandidateUser()
      Restrict to tasks with a historic identity link to the given candidate user.
      Returns:
      taskHadCandidateUser
    • getTaskHadCandidateUser_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getTaskHadCandidateUser_JsonNullable()
    • setTaskHadCandidateUser_JsonNullable

      public void setTaskHadCandidateUser_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> taskHadCandidateUser)
    • setTaskHadCandidateUser

      public void setTaskHadCandidateUser(String taskHadCandidateUser)
    • taskHadCandidateGroup

      public HistoricTaskInstanceQueryDto taskHadCandidateGroup(String taskHadCandidateGroup)
    • getTaskHadCandidateGroup

      @Nullable public String getTaskHadCandidateGroup()
      Restrict to tasks with a historic identity link to the given candidate group.
      Returns:
      taskHadCandidateGroup
    • getTaskHadCandidateGroup_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<String> getTaskHadCandidateGroup_JsonNullable()
    • setTaskHadCandidateGroup_JsonNullable

      public void setTaskHadCandidateGroup_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<String> taskHadCandidateGroup)
    • setTaskHadCandidateGroup

      public void setTaskHadCandidateGroup(String taskHadCandidateGroup)
    • withCandidateGroups

      public HistoricTaskInstanceQueryDto withCandidateGroups(Boolean withCandidateGroups)
    • getWithCandidateGroups

      @Nullable public Boolean getWithCandidateGroups()
      Only include tasks which have a candidate group. Value may only be `true`, as `false` is the default behavior.
      Returns:
      withCandidateGroups
    • getWithCandidateGroups_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getWithCandidateGroups_JsonNullable()
    • setWithCandidateGroups_JsonNullable

      public void setWithCandidateGroups_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> withCandidateGroups)
    • setWithCandidateGroups

      public void setWithCandidateGroups(Boolean withCandidateGroups)
    • withoutCandidateGroups

      public HistoricTaskInstanceQueryDto withoutCandidateGroups(Boolean withoutCandidateGroups)
    • getWithoutCandidateGroups

      @Nullable public Boolean getWithoutCandidateGroups()
      Only include tasks which have no candidate group. Value may only be `true`, as `false` is the default behavior.
      Returns:
      withoutCandidateGroups
    • getWithoutCandidateGroups_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<Boolean> getWithoutCandidateGroups_JsonNullable()
    • setWithoutCandidateGroups_JsonNullable

      public void setWithoutCandidateGroups_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<Boolean> withoutCandidateGroups)
    • setWithoutCandidateGroups

      public void setWithoutCandidateGroups(Boolean withoutCandidateGroups)
    • orQueries

    • addOrQueriesItem

      public HistoricTaskInstanceQueryDto addOrQueriesItem(HistoricTaskInstanceQueryDto orQueriesItem)
    • getOrQueries

      A JSON array of nested historic task instance queries with OR semantics. A task instance matches a nested query if it fulfills at least one of the query's predicates. With multiple nested queries, a task instance must fulfill at least one predicate of each query ([Conjunctive Normal Form](https://en.wikipedia.org/wiki/Conjunctive_normal_form)). All task instance query properties can be used except for: `sorting`, `withCandidateGroups`, ` withoutCandidateGroups`. See the [User Guide](https://docs.camunda.org/manual/7.21/user-guide/process-engine/process-engine-api/#or-queries) for more information about OR queries.
      Returns:
      orQueries
    • getOrQueries_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<List<HistoricTaskInstanceQueryDto>> getOrQueries_JsonNullable()
    • setOrQueries_JsonNullable

      public void setOrQueries_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<List<HistoricTaskInstanceQueryDto>> orQueries)
    • setOrQueries

      public void setOrQueries(List<HistoricTaskInstanceQueryDto> orQueries)
    • sorting

    • addSortingItem

    • getSorting

      An array of criteria to sort the result by. Each element of the array is an object that specifies one ordering. The position in the array identifies the rank of an ordering, i.e., whether it is primary, secondary, etc. Sorting has no effect for `count` endpoints
      Returns:
      sorting
    • getSorting_JsonNullable

      public org.openapitools.jackson.nullable.JsonNullable<List<HistoricTaskInstanceQueryDtoSortingInner>> getSorting_JsonNullable()
    • setSorting_JsonNullable

      public void setSorting_JsonNullable(org.openapitools.jackson.nullable.JsonNullable<List<HistoricTaskInstanceQueryDtoSortingInner>> sorting)
    • setSorting

      public void setSorting(List<HistoricTaskInstanceQueryDtoSortingInner> sorting)
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • toUrlQueryString

      public String toUrlQueryString()
      Convert the instance into URL query string.
      Returns:
      URL query string
    • toUrlQueryString

      public String toUrlQueryString(String prefix)
      Convert the instance into URL query string.
      Parameters:
      prefix - prefix of the query string
      Returns:
      URL query string