export interface SdPlatformJobLogResponse { /** * The name of a job. */ readonly name: string; /** * The job progress. Normalized from 0 to 1. */ readonly progress: number; /** * The unix timestamp of a job start date. If null, job was created but never started ( usually due to job being locked). */ readonly start_at?: number; /** * The unix timestmap of a job end date. If not set, job was never finished. Usually due to being locked or resulting in error, if not already running. */ readonly end_at?: number; /** * The created at unix timestmap of a job. */ readonly created_at?: number; /** * The updated at unix timestamp of a job. */ readonly updated_at?: number; /** * The additional data of a job, which can be any type of object. */ readonly additional_data?: any; } //# sourceMappingURL=SdPlatformResponseJobLog.d.ts.map