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.

20 lines (19 loc) 373 B
/** * Interface for variable objects. * @export * @interface IPropertyMapping */ export interface IPropertyMapping { /** * Property from REST req. * @type {string} * @memberof IPropertyMapping */ mapFrom: string; /** * Assigned workflow variable. * @type {string} * @memberof IPropertyMapping */ mapTo: string; }