Class WorkflowCreate

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

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

    • description

      protected String description
      The description of the workflow to create.
    • name

      protected String name
      The name of the workflow to create.
    • startPointLayout

      protected WorkflowLayout startPointLayout
    • statuses

      protected List<StatusLayoutUpdate> statuses
      The statuses associated with this workflow.
    • transitions

      protected List<TransitionUpdateDTO> transitions
      The transitions of this workflow.
  • Constructor Details

    • WorkflowCreate

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

      @Internal public WorkflowCreate(String description, String name, WorkflowLayout startPointLayout, List<StatusLayoutUpdate> statuses, List<TransitionUpdateDTO> transitions)
      Constructs a validated instance of WorkflowCreate.

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

      Parameters:
      description - The description of the workflow to create.
      name - The name of the workflow to create.
      startPointLayout - startPointLayout
      statuses - The statuses associated with this workflow.
      transitions - The transitions of this workflow.
    • WorkflowCreate

      protected WorkflowCreate()
  • Method Details