UNPKG

443 BTypeScriptView Raw
1import { StatusResponse } from './status.response';
2export interface LocationRepositoryInfoResponseRootObject extends StatusResponse {
3 location: LocationRepositoryInfoResponseLocation;
4}
5export interface LocationRepositoryInfoResponseLocation {
6 pk: number;
7 name: string;
8 address: string;
9 city: string;
10 short_name: string;
11 lng: number;
12 lat: number;
13 external_source: string;
14 facebook_places_id: number;
15}