fpt-akainsights-react-native
Version:
React Native Plugin for the akaInsights Javascript SDK
18 lines (17 loc) • 583 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var DeviceInfo_1 = require("../helpers/DeviceInfo");
var CartUpdateRequestDto = /** @class */ (function () {
function CartUpdateRequestDto() {
this.device_token = DeviceInfo_1.getDeviceToken();
this.action = '';
this.product_id = '';
this.variant_id = '';
this.price = 0.0;
this.total_quantity = 0;
this.total_price = 0.0;
this.created_at = new Date();
}
return CartUpdateRequestDto;
}());
exports.default = CartUpdateRequestDto;