Class ConditionGroupUpdate

java.lang.Object
io.github.primelib.jira4j.restv3.model.ConditionGroupUpdate

@Generated("io.github.primelib.primecodegen.javafeign.JavaFeignGenerator") public class ConditionGroupUpdate extends Object
ConditionGroupUpdate
  • Field Details

    • conditionGroups

      protected List<ConditionGroupUpdate> conditionGroups
      The nested conditions of the condition group.
    • conditions

      protected List<WorkflowRuleConfiguration> conditions
      The rules for this condition.
    • operation

      Determines how the conditions in the group are evaluated. Accepts either ANY or ALL. If ANY is used, at least one condition in the group must be true for the group to evaluate to true. If ALL is used, all conditions in the group must be true for the group to evaluate to true.
  • Constructor Details

    • ConditionGroupUpdate

      public ConditionGroupUpdate(Consumer<ConditionGroupUpdate> spec)
      Constructs a validated instance of ConditionGroupUpdate.
      Parameters:
      spec - the specification to process
    • ConditionGroupUpdate

      @Internal public ConditionGroupUpdate(List<ConditionGroupUpdate> conditionGroups, List<WorkflowRuleConfiguration> conditions, ConditionGroupUpdate.OperationEnum operation)
      Constructs a validated instance of ConditionGroupUpdate.

      NOTE: This constructor is not considered stable and may change if the model is updated. Consider using ConditionGroupUpdate(Consumer) instead.

      Parameters:
      conditionGroups - The nested conditions of the condition group.
      conditions - The rules for this condition.
      operation - Determines how the conditions in the group are evaluated. Accepts either ANY or ALL. If ANY is used, at least one condition in the group must be true for the group to evaluate to true. If ALL is used, all conditions in the group must be true for the group to evaluate to true.
    • ConditionGroupUpdate

      protected ConditionGroupUpdate()
  • Method Details