@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
32 lines (31 loc) • 547 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;
}