@zowe/zos-jobs-for-zowe-sdk
Version:
Zowe SDK to interact with jobs on z/OS
17 lines • 443 B
TypeScript
import { ISubmitParmsCommon } from "./ISubmitParmsCommon";
/**
* Interface for submit JCL APIs
* @export
* @interface ISubmitJclParms
*/
export interface ISubmitJclParms extends ISubmitParmsCommon {
/**
* JCL to submit, for example:
* "//IEFBR14 JOB ()\n" +
* "//RUN EXEC PGM=IEFBR14"
* @type {string}
* @memberof ISubmitJclParms
*/
jcl: string;
}
//# sourceMappingURL=ISubmitJclParms.d.ts.map