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

    Type Alias JobChangeset

    JSON object with changed job attribute values. The job cannot be completed or failed with this endpoint, use the complete job or fail job endpoints instead.

    type JobChangeset = {
        priority?: number | null;
        retries?: number | null;
        timeout?: number | null;
    }
    Index
    priority?: number | null

    The new priority for the job. Higher values indicate higher priority.

    retries?: number | null

    The new number of retries for the job.

    timeout?: number | null

    The new timeout for the job in milliseconds.