@zowe/zos-tso-for-zowe-sdk
Version:
Zowe SDK to interact with TSO on z/OS
27 lines • 667 B
TypeScript
import { IStartTsoParms } from "./IStartTsoParms";
/**
* Interface for TSO issue command z/OSMF parameters
* @export
* @interface IIssueTsoParms
*/
export interface IIssueTsoParms {
/**
* Command text to issue to the TSO address space.
* @type {string}
* @memberof IIssueTsoParms
*/
command: string;
/**
* Accounting info for Jobs
* @type {string}
* @memberof IIssueTsoParms
*/
accountNumber: string;
/**
* Interface for TSO start command z/OSMF parameters
* @type {string}
* @memberof IIssueTsoParms
*/
startParams: IStartTsoParms;
}
//# sourceMappingURL=IIssueTsoParms.d.ts.map