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