1 | export interface StoriesInsightsFeedResponseRootObject {
|
2 | data: StoriesInsightsFeedResponseData;
|
3 | }
|
4 | export interface StoriesInsightsFeedResponseData {
|
5 | user: StoriesInsightsFeedResponseUser;
|
6 | }
|
7 | export interface StoriesInsightsFeedResponseUser {
|
8 | id: string;
|
9 | business_manager: StoriesInsightsFeedResponseBusiness_manager;
|
10 | }
|
11 | export interface StoriesInsightsFeedResponseBusiness_manager {
|
12 | stories_unit: StoriesInsightsFeedResponseStories_unit;
|
13 | }
|
14 | export interface StoriesInsightsFeedResponseStories_unit {
|
15 | stories: StoriesInsightsFeedResponseStories;
|
16 | }
|
17 | export interface StoriesInsightsFeedResponseStories {
|
18 | edges: StoriesInsightsFeedResponseEdgesItem[];
|
19 | page_info: StoriesInsightsFeedResponsePage_info;
|
20 | }
|
21 | export interface StoriesInsightsFeedResponseEdgesItem {
|
22 | node: StoriesInsightsFeedResponseNode;
|
23 | cursor: null;
|
24 | }
|
25 | export interface StoriesInsightsFeedResponseNode {
|
26 | instagram_media_id: string;
|
27 | display_url: string;
|
28 | exits_count: number;
|
29 | impression_count: number;
|
30 | reach_count: number;
|
31 | replies_count: number;
|
32 | taps_back_count: number;
|
33 | taps_forward_count: number;
|
34 | story_swipe_away_count: number;
|
35 | inline_insights_node: StoriesInsightsFeedResponseInline_insights_node;
|
36 | id: string;
|
37 | __typename: string;
|
38 | }
|
39 | export interface StoriesInsightsFeedResponseInline_insights_node {
|
40 | state: string;
|
41 | metrics: null;
|
42 | }
|
43 | export interface StoriesInsightsFeedResponsePage_info {
|
44 | end_cursor: string;
|
45 | has_next_page: boolean;
|
46 | }
|