UNPKG

@zowe/cli

Version:

Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.

63 lines (62 loc) 1.43 kB
import { ITsoMessages, IZosfmMessages } from "../../../../../zostso"; /** * z/OSMF synchronous most tso command response messages. See the z/OSMF REST API publication for complete details. * @export * @interface IZosmfTsoResponse */ export interface IZosmfTsoResponse { /** * unique identifier for the servlet entry * @type string * @memberOf IZosmfTsoResponse */ servletKey: string; /** * message queue ID * @type string * @memberOf IZosmfTsoResponse */ queueID?: string; /** * structure version * @type string * @memberOf IZosmfTsoResponse */ ver: string; /** * reconnected indicator * @type boolean * @memberOf IZosmfTsoResponse */ reused: boolean; /** * timeout indicator * @type boolean * @memberOf IZosmfTsoResponse */ timeout: boolean; /** * z/OSMF messages * @type IZosfmMessages[] * @memberOf IZosmfTsoResponse */ msgData?: IZosfmMessages[]; /** * id of the session * @type string * @memberOf IZosmfTsoResponse */ sessionID?: string; /** * TSO/E messages that were received during the request * @type ITsoMessages[] * @memberOf IZosmfTsoResponse */ tsoData?: ITsoMessages[]; /** * application messages * @type string * @memberOf IZosmfTsoRespons */ appData?: string; }