import { Base } from './base'; import { GeoPoint } from './geoPoint'; export class DeviceInformation extends Base { os?: string; version?: string; isLoggedIn?: string; androidToken?: string; iosToken?: string; webToken?: string; currentLocation?: GeoPoint; constructor(data: any | null = null) { super(); this.os = ''; this.version = ''; this.isLoggedIn = ''; this.androidToken = ''; this.iosToken = ''; this.webToken = ''; this.currentLocation = new GeoPoint(); this.load(data); } }