@zowe/zos-tso-for-zowe-sdk
Version:
Zowe SDK to interact with TSO on z/OS
32 lines • 787 B
TypeScript
/**
* Interface for starting an app on a TSO Address Space
* @export
* @interface IStartTsoAppParms
*/
export interface IStartTsoAppParms {
/**
* Startup command to run at TSO address space
* @type {string}
* @memberof IStartTsoAppParms
*/
startupCommand: string;
/**
* App Key of application to be started at a TSO address space
* @type {string}
* @memberof IStartTsoAppParms
*/
appKey: string;
/**
* Queue ID of an active address space
* @type {string}
* @memberof IStartTsoAppParms
*/
queueID?: string;
/**
* Servlet key of an active address space
* @type {string}
* @memberof IStartTsoAppParms
*/
servletKey?: string;
}
//# sourceMappingURL=IStartTsoAppParms.d.ts.map