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