UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

91 lines (90 loc) 2.73 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let ToolActionEventDetailDescription = /*@__PURE__*/ (() => { class ToolActionEventDetailDescription extends Description { constructor() { super(); 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; } get_type() { return "ToolActionEventDetail"; } get type() { return this.get_type(); } get actionId() { return this.s; } set actionId(a) { this.s = a; this.j("ActionId"); } get actionType() { return this.t; } set actionType(a) { this.t = a; this.j("ActionType"); } get isModified() { return this.l; } set isModified(a) { this.l = a; this.j("IsModified"); } get boolValue() { return this.k; } set boolValue(a) { this.k = a; this.j("BoolValue"); } get numberValue() { return this.q; } set numberValue(a) { this.q = a; this.j("NumberValue"); } get dateTimeValue() { return this.o; } set dateTimeValue(a) { this.o = a; this.j("DateTimeValue"); } get untypedValueRef() { return this.v; } set untypedValueRef(a) { this.v = a; this.j("UntypedValueRef"); } get stringValue() { return this.u; } set stringValue(a) { this.u = a; this.j("StringValue"); } } ToolActionEventDetailDescription.$t = markType(ToolActionEventDetailDescription, 'ToolActionEventDetailDescription', Description.$); return ToolActionEventDetailDescription; })();