igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
61 lines (60 loc) • 2.09 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 DataSourceAggregatedResultDescription = /*@__PURE__*/ (() => {
class DataSourceAggregatedResultDescription extends Description {
constructor() {
super();
this.p = null;
this.s = null;
this.k = null;
this.l = null;
}
get_type() {
return "DataSourceAggregatedResult";
}
get type() {
return this.get_type();
}
get item() {
return this.p;
}
set item(a) {
this.p = a;
this.j("Item");
}
get transactionType() {
return this.s;
}
set transactionType(a) {
this.s = a;
this.j("TransactionType");
}
get keys() {
return this.k;
}
set keys(a) {
this.k = a;
this.j("Keys");
}
get values() {
return this.l;
}
set values(a) {
this.l = a;
this.j("Values");
}
}
DataSourceAggregatedResultDescription.$t = markType(DataSourceAggregatedResultDescription, 'DataSourceAggregatedResultDescription', Description.$);
DataSourceAggregatedResultDescription.__marshalByValue = true;
DataSourceAggregatedResultDescription.__marshalByValueAlias = "DataSourceAggregatedResult";
return DataSourceAggregatedResultDescription;
})();