UNPKG

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

Version:
29 lines 869 B
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