@zowe/zos-workflows-for-zowe-sdk
Version:
Zowe SDK to interact with the z/OS workflows APIs
20 lines • 419 B
TypeScript
/**
* 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;
}
//# sourceMappingURL=IPropertyMapping.d.ts.map