@zowe/cli
Version:
Zowe CLI is a command line interface (CLI) that provides a simple and streamlined way to interact with IBM z/OS.
38 lines (37 loc) • 701 B
TypeScript
/**
* Interface for z/OSMF API response.
* @export
* @interface IVariableInfo
*/
export interface IVariableInfo {
/**
* Name of variable.
* @type {string}
* @memberof IVariableInfo
*/
name: string;
/**
* Variable scope.
* @type {string}
* @memberof IVariableInfo
*/
scope: string;
/**
* Variable type.
* @type {string}
* @memberof IVariableInfo
*/
type: string;
/**
* Variable value.
* @type {string}
* @memberof IVariableInfo
*/
value: string;
/**
* Variable visibility (public|private).
* @type {string}
* @memberof IVariableInfo
*/
visibility: string;
}