1 | export interface TagRepositorySearchResponseRootObject {
|
2 | results: TagRepositorySearchResponseResultsItem[];
|
3 | has_more: boolean;
|
4 | rank_token: string;
|
5 | status: string;
|
6 | }
|
7 | export interface TagRepositorySearchResponseResultsItem {
|
8 | id: string;
|
9 | name: string;
|
10 | media_count: number;
|
11 | follow_status: null;
|
12 | following: null;
|
13 | allow_following: null;
|
14 | allow_muting_story: null;
|
15 | profile_pic_url: string;
|
16 | non_violating: null;
|
17 | related_tags: null;
|
18 | subtitle: null;
|
19 | social_context: null;
|
20 | social_context_profile_links: null;
|
21 | follow_button_text: null;
|
22 | show_follow_drop_down: null;
|
23 | debug_info: null;
|
24 | search_result_subtitle: string;
|
25 | }
|