fpt-akainsights-react-native
Version:
React Native Plugin for the akaInsights Javascript SDK
15 lines (14 loc) • 494 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var DeviceInfo_1 = require("../helpers/DeviceInfo");
var CheckoutRequestDto = /** @class */ (function () {
function CheckoutRequestDto() {
this.device_token = DeviceInfo_1.getDeviceToken();
this.product_ids = [];
this.total_price = 0.0;
this.total_quantity = 0;
this.created_at = new Date();
}
return CheckoutRequestDto;
}());
exports.default = CheckoutRequestDto;