@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
20 lines (19 loc) • 409 B
TypeScript
/**
* TSO Response interface for one of TSO/E messages
* @export
* @memberOf ITsoResponseMessage
*/
export interface ITsoResponseMessage {
/**
* JSON version for message format
* @type string
* @memberOf ITsoResponseMessage
*/
"VERSION": string;
/**
* description of the data type
* @type string
* @memberOf ITsoResponseMessage
*/
"DATA": string;
}