igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
40 lines (39 loc) • 1.76 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 { Base, String_$type, markType } from "./type";
import { List$1 } from "./List$1";
import { DataSourceSchemaPropertyType_$type } from "./DataSourceSchemaPropertyType";
import { ISummaryResult_$type } from "./ISummaryResult";
import { ISectionInformation_$type } from "./ISectionInformation";
/**
* @hidden
*/
var GenericPageResponse = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(GenericPageResponse, _super);
function GenericPageResponse() {
var _this = _super.call(this) || this;
_this.h = 0;
_this.i = 0;
_this.e = null;
_this.f = null;
_this.d = null;
_this.c = null;
_this.g = null;
_this.b = null;
_this.a = null;
_this.e = new List$1(String_$type, 0);
_this.f = new List$1(DataSourceSchemaPropertyType_$type, 0);
_this.d = new List$1(String_$type, 0);
_this.b = new List$1(ISectionInformation_$type, 0);
_this.g = new List$1(ISummaryResult_$type, 0);
return _this;
}
GenericPageResponse.$t = markType(GenericPageResponse, 'GenericPageResponse');
return GenericPageResponse;
}(Base));
export { GenericPageResponse };