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

    Interface AsyncResponseV3

    interface AsyncResponseV3 {
        cancelUrl?: string;
        jobId: string;
        progress?: number;
        result?: AsyncResult;
        status?: string;
        statusUrl?: string;
    }
    Index

    Properties

    cancelUrl?: string

    A URL to cancel the job.

    jobId: string

    The ID for the asynchronous job.

    progress?: number

    The progress of the running job. The value is the percentage of the job that has been completed.

    result?: AsyncResult

    The result of the completed job.

    status?: string

    The status of the job.

    statusUrl?: string

    A URL to show the status of the current job.