igniteui-react-core
Version:
Ignite UI React Core.
77 lines (76 loc) • 2.36 kB
JavaScript
/*
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 WebFilteringOperationDescription = /*@__PURE__*/ (() => {
class WebFilteringOperationDescription extends Description {
get_type() {
return "WebFilteringOperation";
}
get type() {
return this.get_type();
}
constructor() {
super();
this.r = null;
this.k = false;
this.j = false;
this.p = null;
this.i = false;
this.q = null;
}
get name() {
return this.r;
}
set name(a) {
this.r = a;
this.g("Name");
}
get isUnary() {
return this.k;
}
set isUnary(a) {
this.k = a;
this.g("IsUnary");
}
get isNestedQuery() {
return this.j;
}
set isNestedQuery(a) {
this.j = a;
this.g("IsNestedQuery");
}
get iconName() {
return this.p;
}
set iconName(a) {
this.p = a;
this.g("IconName");
}
get hidden() {
return this.i;
}
set hidden(a) {
this.i = a;
this.g("Hidden");
}
get logicRef() {
return this.q;
}
set logicRef(a) {
this.q = a;
this.g("LogicRef");
}
}
WebFilteringOperationDescription.$t = /*@__PURE__*/ markType(WebFilteringOperationDescription, 'WebFilteringOperationDescription', Description.$);
WebFilteringOperationDescription.__marshalByValue = true;
WebFilteringOperationDescription.__marshalByValueAlias = "FilteringOperation";
return WebFilteringOperationDescription;
})();