import { Attr } from 'ts-framework' export class GeolocationAPILocationsResponseDTO { name?: string placeName?: string fullAddress?: string unit?: string street?: string streetNumber?: string state?: string country?: string city?: string zip?: string timeZone?: string googlePlaceId?: string coordinates: { latitude?: number longitude?: number } } export class UpdateLocationRequestDTO { @Attr({ type: Number }) latitude: number @Attr({ type: Number }) longitude: number @Attr({ type: Number }) bearing: number }