UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

129 lines (128 loc) 4.29 kB
/* THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE: https://www.infragistics.com/legal/license/igultimate-la https://www.infragistics.com/legal/license/igultimate-eula GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company. */ import { __extends } from "tslib"; import { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var ToolActionEventDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(ToolActionEventDetailDescription, _super); function ToolActionEventDetailDescription() { var _this = _super.call(this) || this; _this.s = null; _this.t = null; _this.l = false; _this.k = false; _this.q = 0; _this.o = new Date(); _this.v = null; _this.u = null; return _this; } ToolActionEventDetailDescription.prototype.get_type = function () { return "ToolActionEventDetail"; }; Object.defineProperty(ToolActionEventDetailDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionEventDetailDescription.prototype, "actionId", { get: function () { return this.s; }, set: function (a) { this.s = a; this.j("ActionId"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionEventDetailDescription.prototype, "actionType", { get: function () { return this.t; }, set: function (a) { this.t = a; this.j("ActionType"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionEventDetailDescription.prototype, "isModified", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("IsModified"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionEventDetailDescription.prototype, "boolValue", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("BoolValue"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionEventDetailDescription.prototype, "numberValue", { get: function () { return this.q; }, set: function (a) { this.q = a; this.j("NumberValue"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionEventDetailDescription.prototype, "dateTimeValue", { get: function () { return this.o; }, set: function (a) { this.o = a; this.j("DateTimeValue"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionEventDetailDescription.prototype, "untypedValueRef", { get: function () { return this.v; }, set: function (a) { this.v = a; this.j("UntypedValueRef"); }, enumerable: false, configurable: true }); Object.defineProperty(ToolActionEventDetailDescription.prototype, "stringValue", { get: function () { return this.u; }, set: function (a) { this.u = a; this.j("StringValue"); }, enumerable: false, configurable: true }); ToolActionEventDetailDescription.$t = markType(ToolActionEventDetailDescription, 'ToolActionEventDetailDescription', Description.$); return ToolActionEventDetailDescription; }(Description)); export { ToolActionEventDetailDescription };