import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; export declare const importsMapJobInfo: {}; /** * The REST response with a job result. */ export declare class JobInfo implements ModelInterface { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the job id. */ jobId: string; /** * Gets or sets the job message. */ message: string; /** * Gets or sets the job status. */ status: JobInfo.StatusEnum; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; } /** * Enums for JobInfo */ export declare namespace JobInfo { enum StatusEnum { Unknown, Queued, Processing, Succeded, Failed } }