@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias JobResultUserTask

    JobResultUserTask:
        | {
            corrections?: JobResultCorrections;
            denied?: boolean
            | null;
            deniedReason?: string | null;
        }
        | null

    Type Declaration

    • {
          corrections?: JobResultCorrections;
          denied?: boolean | null;
          deniedReason?: string | null;
      }
      • Optionalcorrections?: JobResultCorrections
      • Optionaldenied?: boolean | null

        Indicates whether the worker denies the work, i.e. explicitly doesn't approve it. For example, a user task listener can deny the completion of a task by setting this flag to true. In this example, the completion of a task is represented by a job that the worker can complete as denied. As a result, the completion request is rejected and the task remains active. Defaults to false.

      • OptionaldeniedReason?: string | null

        The reason provided by the user task listener for denying the work.

    • null