interface JobCompleted {
    isNSFW: boolean;
    jobId: string;
    projectId: string;
    resultUrl: null | string;
    seed: number;
    steps: number;
    type: "completed";
    userCanceled: boolean;
}

Hierarchy (View Summary)

Properties

isNSFW: boolean
jobId: string
projectId: string
resultUrl: null | string

URL to the result image, could be null if the job was canceled or triggered NSFW filter while it was not disabled by the user

seed: number
steps: number
type: "completed"
userCanceled: boolean