igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
131 lines (130 loc) • 4.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 { __extends } from "tslib";
import { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var WebPivotValueDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebPivotValueDetailDescription, _super);
function WebPivotValueDetailDescription() {
var _this = _super.call(this) || this;
_this.x = null;
_this.v = null;
_this.m = null;
_this.k = null;
_this.p = false;
_this.r = null;
_this.u = null;
_this.w = null;
return _this;
}
WebPivotValueDetailDescription.prototype.get_type = function () {
return "WebPivotValueDetail";
};
Object.defineProperty(WebPivotValueDetailDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotValueDetailDescription.prototype, "member", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.j("Member");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotValueDetailDescription.prototype, "displayName", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.j("DisplayName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotValueDetailDescription.prototype, "aggregate", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("Aggregate");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotValueDetailDescription.prototype, "aggregateList", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("AggregateList");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotValueDetailDescription.prototype, "enabled", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("Enabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotValueDetailDescription.prototype, "styles", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.j("Styles");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotValueDetailDescription.prototype, "dataType", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("DataType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotValueDetailDescription.prototype, "formatterRef", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.j("FormatterRef");
},
enumerable: false,
configurable: true
});
WebPivotValueDetailDescription.$t = markType(WebPivotValueDetailDescription, 'WebPivotValueDetailDescription', Description.$);
WebPivotValueDetailDescription.__marshalByValue = true;
WebPivotValueDetailDescription.__marshalByValueAlias = "PivotValueDetail";
return WebPivotValueDetailDescription;
}(Description));
export { WebPivotValueDetailDescription };