@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
39 lines (38 loc) • 890 B
TypeScript
import { IZosfmMessages } from "../../../../../zostso";
/**
* The z/OSMF Ping API parameters. See the z/OSMF REST API documentation for full details.
* @export
* @interface IZosmfPingResponse
*/
export interface IZosmfPingResponse {
/**
* Ping servlet key used text.
* @type {string}
* @memberof IZosmfPingResponse
*/
"servletKey": string;
/**
* Ping version text.
* @type {string}
* @memberof IZosmfPingResponse
*/
"ver": string;
/**
* Ping error message response.
* @type {array}
* @memberof IZosmfPingResponse
*/
"msgData"?: IZosfmMessages[];
/**
* Ping reused boolean.
* @type {boolean}
* @memberof IZosmfPingResponse
*/
"reused": boolean;
/**
* Ping timeout boolean.
* @type {boolean}
* @memberof IZosmfPingResponse
*/
"timeout": boolean;
}