@musallam/firefly-client
    Preparing search index...

    Interface JobPollPayload

    Returned when the job is pending, running, failed, cancelled, cancel_pending, or timeout.

    interface JobPollPayload {
        error_code?: string;
        jobId: string;
        message?: string;
        status: FireflyApiClient.JobPollPayloadStatus;
    }
    Index

    Properties

    error_code?: string

    Error code present when status is failed, cancelled, cancel_pending, or timeout.

    jobId: string

    The job ID.

    message?: string

    Human-readable string describing the error or status.