@zowe/zos-jobs-for-zowe-sdk
Version:
Zowe SDK to interact with jobs on z/OS
26 lines • 638 B
TypeScript
/**
* Interface for change job z/OSMF API
* @export
* @interface IModifyJobOptions
*/
export interface IModifyJobOptions {
/**
* new job class to change job to
* @type {string}
* @memberof IModifyJobOptions
*/
jobclass?: string;
/**
* specify this option as `true` when wanting to hold your job
* @type {boolean}
* @memberof IModifyJobOptions
*/
hold?: boolean;
/**
* specify this option as `true` when wanting to release your job
* @type {boolean}
* @memberof IModifyJobOptions
*/
release?: boolean;
}
//# sourceMappingURL=IModifyJobOptions.d.ts.map