adobe-firefly-sdk
    Preparing search index...

    Type Alias GetJobStatusResponses

    type GetJobStatusResponses = {
        "200":
            | { status: "not_started" } & JobStatusNotStarted
            | { status: "running" } & JobStatusRunning
            | { status: "succeeded" } & JobStatusSucceeded
            | { status: "failed" } & JobStatusFailed;
    }
    Index

    Properties

    Properties

    "200":
        | { status: "not_started" } & JobStatusNotStarted
        | { status: "running" } & JobStatusRunning
        | { status: "succeeded" } & JobStatusSucceeded
        | { status: "failed" } & JobStatusFailed

    The schema of a 200 response varies depending on the status of the job. A job with a succeeded status will include the results in the response. Result objects vary depending on the operation.