@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
47 lines (46 loc) • 1.3 kB
TypeScript
import { IStartStopResponse, IZosmfTsoResponse } from "../../../../zostso";
import { IStartStopResponses } from "./IStartStopResponses";
/**
* The TsoSend API response.
* @export
* @interface ISendResponse
*/
export interface IIssueResponse {
/**
* True if the command was issued and the responses were collected.
* @type {boolean}
* @memberof IIssueResponse
*/
success: boolean;
/**
* zOSMF start TSO API response.
* @type (IStartStopResponse}
* @memberof ISendResponse
*/
startResponse: IStartStopResponses;
/**
* Indicates if started TSO containes "READY " message
* @type (boolean}
* @memberof IIssueResponse
*/
startReady: boolean;
/**
* zOSMF stop TSO API response.
* @type (IStartStopResponse}
* @memberof IIssueResponse
*/
stopResponse: IStartStopResponse;
/**
* The list of zOSMF send API responses. May issue multiple requests or
* to ensure that all messages are collected. Each individual response is placed here.
* @type (IZosmfTsoResponse[]}
* @memberof IIssueResponse
*/
zosmfResponse: IZosmfTsoResponse[];
/**
* The command response text.
* @type{string}
* @memberof IIssueResponse
*/
commandResponse: string;
}