@zowe/zos-workflows-for-zowe-sdk
Version:
Zowe SDK to interact with the z/OS workflows APIs
26 lines • 589 B
TypeScript
/**
* Interface for variable-specification object.
* @export
* @interface IVariableSpecification
*/
export interface IVariableSpecification {
/**
* Name of the variable.
* @type {string}
* @memberof IVariableSpecification
*/
name: string;
/**
* Variable scope.
* @type {string}
* @memberof IVariableSpecification
*/
scope: string;
/**
* Indicates if is variable required.
* @type {boolean}
* @memberof IVariableSpecification
*/
required: boolean;
}
//# sourceMappingURL=IVariableSpecification.d.ts.map