@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
20 lines (19 loc) • 352 B
TypeScript
/**
* Interface for various job APIs
* @export
* @interface ICommonJobParms
*/
export interface ICommonJobParms {
/**
* job id for a job
* @type {string}
* @memberof ICommonJobParms
*/
jobid: string;
/**
* job name for a job
* @type {string}
* @memberof ICommonJobParms
*/
jobname: string;
}