/**
 * 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;
}
