igniteui-react-core
Version:
Ignite UI React Core.
55 lines (54 loc) • 1.62 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 Transaction = /*@__PURE__*/ (() => {
class Transaction extends Base {
constructor() {
super(...arguments);
this._id = null;
this._transactionID = 0;
this._type = 0;
this._value = null;
this._error = null;
}
get id() {
return this._id;
}
set id(a) {
this._id = a;
}
get transactionID() {
return this._transactionID;
}
set transactionID(a) {
this._transactionID = a;
}
get type() {
return this._type;
}
set type(a) {
this._type = a;
}
get value() {
return this._value;
}
set value(a) {
this._value = a;
}
get error() {
return this._error;
}
set error(a) {
this._error = a;
}
}
Transaction.$t = /*@__PURE__*/ markType(Transaction, 'Transaction');
return Transaction;
})();