import { JobProgressEntities } from './JobProgressEntities'; import { SdkResponse } from "@g42cloud/g42cloud-sdk-core/SdkResponse"; export declare class ShowJobProgressResponse extends SdkResponse { status?: ShowJobProgressResponseStatusEnum | string; private 'job_id'?; private 'job_type'?; private 'begin_time'?; private 'end_time'?; private 'error_code'?; private 'fail_reason'?; entities?: JobProgressEntities; constructor(); withStatus(status: ShowJobProgressResponseStatusEnum | string): ShowJobProgressResponse; withJobId(jobId: string): ShowJobProgressResponse; set jobId(jobId: string | undefined); get jobId(): string | undefined; withJobType(jobType: string): ShowJobProgressResponse; set jobType(jobType: string | undefined); get jobType(): string | undefined; withBeginTime(beginTime: string): ShowJobProgressResponse; set beginTime(beginTime: string | undefined); get beginTime(): string | undefined; withEndTime(endTime: string): ShowJobProgressResponse; set endTime(endTime: string | undefined); get endTime(): string | undefined; withErrorCode(errorCode: string): ShowJobProgressResponse; set errorCode(errorCode: string | undefined); get errorCode(): string | undefined; withFailReason(failReason: string): ShowJobProgressResponse; set failReason(failReason: string | undefined); get failReason(): string | undefined; withEntities(entities: JobProgressEntities): ShowJobProgressResponse; } /** * @export * @enum {string} */ export declare enum ShowJobProgressResponseStatusEnum { SUCCESS = "SUCCESS", FAIL = "FAIL", RUNNING = "RUNNING", INIT = "INIT" } //# sourceMappingURL=ShowJobProgressResponse.d.ts.map