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

    Interface JobStatusFailed

    Response when a job has failed during processing. Contains error details explaining what went wrong.

    interface JobStatusFailed {
        error_code: string;
        jobId: string;
        message: string;
        status: "failed";
    }
    Index

    Properties

    error_code: string

    The error code.

    jobId: string

    The job ID.

    message: string

    The error message.

    status: "failed"

    The status of the job.