UNPKG

@uipath/robot

Version:

UiPath Robot javascript SDK enabling web pages to interact with UiPath Robots

29 lines (28 loc) 937 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.InputArgumentSchema = void 0; /** * InputArgumentSchema returned by the installProcess request. */ /* @uipath-public */ var InputArgumentSchema = /** @class */ (function () { /** * @param name Input argument name * @param type Input argument type * @param isRequired Input argument is required * @param hasDefault Input argument has default */ /* @uipath-internal */ function InputArgumentSchema(name, type, isRequired, hasDefault) { this.name = name; this.type = type; this.isRequired = isRequired; this.hasDefault = hasDefault; this.name = name; this.type = type; this.isRequired = isRequired; this.hasDefault = hasDefault; } return InputArgumentSchema; }()); exports.InputArgumentSchema = InputArgumentSchema;