igniteui-react-core
Version:
Ignite UI React Core.
66 lines (65 loc) • 2.3 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, markType } from "./type";
import { IDataSourceSchema_$type } from "./IDataSourceSchema";
/**
* @hidden
*/
var ODataDataSourceSchema = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(ODataDataSourceSchema, _super);
function ODataDataSourceSchema(a, b, c) {
var _this = _super.call(this) || this;
_this.a = null;
_this.d = null;
_this.e = null;
_this.b = null;
_this.c = null;
_this.d = a;
_this.e = b;
_this.a = c;
return _this;
}
Object.defineProperty(ODataDataSourceSchema.prototype, "propertyNames", {
get: function () {
return this.d;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ODataDataSourceSchema.prototype, "primaryKey", {
get: function () {
return this.a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ODataDataSourceSchema.prototype, "propertyTypes", {
get: function () {
return this.e;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ODataDataSourceSchema.prototype, "propertyDataIntents", {
get: function () {
return this.b;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ODataDataSourceSchema.prototype, "subSchemas", {
get: function () {
return this.c;
},
enumerable: false,
configurable: true
});
ODataDataSourceSchema.$t = markType(ODataDataSourceSchema, 'ODataDataSourceSchema', Base.$, [IDataSourceSchema_$type]);
return ODataDataSourceSchema;
}(Base));
export { ODataDataSourceSchema };