adobe-firefly-sdk
    Preparing search index...

    Type Alias AsyncTaskResponseV3

    AsyncTaskResponseV3

    type AsyncTaskResponseV3 = {
        jobId: string;
        progress?: number;
        result?:
            | GenerateImagesResponseV3
            | GenerateSimilarImagesResponseV3
            | ExpandImageResponseV3
            | FillImageResponseV3
            | GenerateObjectCompositeResponseV3;
        status: "pending"
        | "running"
        | "succeeded"
        | "failed"
        | "canceled";
    }
    Index

    Properties

    jobId: string

    Job ID

    The ID of the async job.

    progress?: number

    Progress

    Result

    The result of the job, if the job has completed.

    status: "pending" | "running" | "succeeded" | "failed" | "canceled"

    Status of the job

    The status of the job.