@zowe/zos-tso-for-zowe-sdk
Version:
Zowe SDK to interact with TSO on z/OS
29 lines • 869 B
TypeScript
import { IZosmfPingResponse } from "./zosmf/IZosmfPingResponse";
import { ImperativeError } from "@zowe/imperative";
export interface IPingResponse {
/**
* True if the command was issued and the responses were collected.
* @type {boolean}
* @memberof IPingResponse
*/
success: boolean;
/**
* Response from z/OSMF to ping rest call
* @type {IZosmfPingResponse}
* @memberof IPingResponse
*/
zosmfPingResponse: IZosmfPingResponse;
/**
* If an error occurs, returns the ImperativeError, which contains cause error.
* @type {ImperativeError}
* @memberof IConsoleResponse
*/
failureResponse?: ImperativeError;
/**
* Servlet key from IZosmfPingResponse
* @type {string}
* @memberof IPingResponse
*/
servletKey: string;
}
//# sourceMappingURL=IPingResponse.d.ts.map