@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
34 lines (33 loc) • 762 B
TypeScript
/**
* Condensed job response interface
* Simplified version of an IJob that can be used to
* display job details to a user without providing too much detail.l
* @export
* @interface IJobFileSimple
*/
export interface IJobFileSimple {
/**
* ID of job that was submitted
* @type {number}
* @memberof IJobFileSimple
*/
id: number;
/**
* DD name of job spool file
* @type {string}
* @memberof IJobFileSimple
*/
ddname: string;
/**
* Step for which job dd exists
* @type {string}
* @memberof IJobFileSimple
*/
stepname: string;
/**
* Total records contained within the job dd
* @type {number}
* @memberof IJobFileSimple
*/
"record-count": number;
}