interface JobResult {
    createdAt?: Date;
    jobId: string;
    result?: string;
    url?: string;
}

Properties

createdAt?: Date

Creation time of the result.

jobId: string

ID of the parent job.

result?: string

Result in JSON format.

url?: string

URL to download a large result (optional).