fpt-akainsights-react-native
Version:
React Native Plugin for the akaInsights Javascript SDK
15 lines (14 loc) • 551 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var DeviceInfo_1 = require("../helpers/DeviceInfo");
var FirstSessionRequestDto = /** @class */ (function () {
function FirstSessionRequestDto() {
this.device = DeviceInfo_1.getDeviceName();
this.os = DeviceInfo_1.getOSVersion();
this.device_token = DeviceInfo_1.getDeviceToken();
this.created_at = new Date();
this.updated_at = new Date();
}
return FirstSessionRequestDto;
}());
exports.default = FirstSessionRequestDto;