@zowe/zos-jobs-for-zowe-sdk
Version:
Zowe SDK to interact with jobs on z/OS
32 lines • 587 B
TypeScript
/**
* Job interface for when a job is submitted
* @export
* @interface IJobSubmit
*/
export interface IJobSubmit {
/**
* job id for a job
* @type {string}
* @memberof IJob
*/
jobid: string;
/**
* job name for a job
* @type {string}
* @memberof IJob
*/
jobname: string;
/**
* status of the job
* @type {string}
* @memberof IJob
*/
status: string;
/**
* return code of the job
* @type {string}
* @memberof IJob
*/
retcode: string;
}
//# sourceMappingURL=IJobSubmit.d.ts.map