UNPKG

@zowe/zos-tso-for-zowe-sdk

Version:
38 lines 1 kB
/** * Interface for starting an app on a TSO Address Space * @export * @interface ITsoAppCommunicationParms */ export interface ITsoAppCommunicationParms { /** * Body contents being sent to TSO address space app * @type {string} * @memberof ITsoAppCommunicationParms */ message?: string; /** * App Key of application to be started at a TSO address space * @type {string} * @memberof ITsoAppCommunicationParms */ appKey: string; /** * Servlet key of an active address space * @type {string} * @memberof ITsoAppCommunicationParms */ servletKey: string; /** * Keep receiving until end keyword is found. * @type {boolean} * @memberof ITsoAppCommunicationParms */ receiveUntilReady?: boolean; /** * Timeout duration in seconds * @type {boolean} * @memberof ITsoAppCommunicationParms */ timeout?: number; } //# sourceMappingURL=ITsoAppCommunicationParms.d.ts.map