1 | export interface FbsearchRepositoryPlacesResponseRootObject {
|
2 | items: FbsearchRepositoryPlacesResponseItemsItem[];
|
3 | has_more: boolean;
|
4 | rank_token: string;
|
5 | status: string;
|
6 | }
|
7 | export interface FbsearchRepositoryPlacesResponseItemsItem {
|
8 | location: FbsearchRepositoryPlacesResponseLocation;
|
9 | title: string;
|
10 | subtitle: string;
|
11 | media_bundles: any[];
|
12 | header_media: FbsearchRepositoryPlacesResponseHeader_media;
|
13 | }
|
14 | export interface FbsearchRepositoryPlacesResponseLocation {
|
15 | pk: number;
|
16 | name: string;
|
17 | address: string;
|
18 | city: string;
|
19 | short_name: string;
|
20 | lng: number;
|
21 | lat: number;
|
22 | external_source: string;
|
23 | facebook_places_id: number;
|
24 | }
|
25 | export interface FbsearchRepositoryPlacesResponseHeader_media {
|
26 | }
|