igniteui-react-core
Version:
Ignite UI React Core.
51 lines (50 loc) • 1.6 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 { Base, markType } from "./type";
/**
* @hidden
*/
export let TransactionState = /*@__PURE__*/ (() => {
class TransactionState extends Base {
get id() {
return this._id;
}
set id(a) {
this._id = a;
}
get transactionType() {
return this._transactionType;
}
set transactionType(a) {
this._transactionType = a;
}
get value() {
return this._value;
}
set value(a) {
this._value = a;
}
get version() {
return this._version;
}
set version(a) {
this._version = a;
}
constructor(a, b, c) {
super();
this._id = null;
this._transactionType = 0;
this._value = null;
this._version = null;
this.id = a;
this.transactionType = b;
this.value = c;
}
}
TransactionState.$t = /*@__PURE__*/ markType(TransactionState, 'TransactionState');
return TransactionState;
})();