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.

26 lines (25 loc) 562 B
/** * The z/OSMF Ping API error message parameters. See the z/OSMF REST API documentation for full details. * @export * @interface IZosfmMessages */ export interface IZosfmMessages { /** * Error message text. * @type string * @memberOf IZosfmMessages */ "messageText": string; /** * Error message text ID. * @type string * @memberOf IZosfmMessages */ "messageId": string; /** * Error message stack trace. * @type string * @memberOf IZosfmMessages */ "stackTrace": string; }