UNPKG

839 BTypeScriptView Raw
1export interface InsightsServiceStoryResponseRootObject {
2 data: InsightsServiceStoryResponseData;
3}
4export interface InsightsServiceStoryResponseData {
5 media: InsightsServiceStoryResponseMedia;
6}
7export interface InsightsServiceStoryResponseMedia {
8 instagram_media_id: string;
9 inline_insights_node: InsightsServiceStoryResponseInline_insights_node;
10 id: string;
11 instagram_media_owner_id: string;
12 instagram_actor: InsightsServiceStoryResponseInstagram_actor;
13 creation_time: number;
14 shopping_outbound_click_count: number;
15 taps_back_count: number;
16 taps_forward_count: number;
17}
18export interface InsightsServiceStoryResponseInline_insights_node {
19 state: string;
20 metrics: null;
21}
22export interface InsightsServiceStoryResponseInstagram_actor {
23 instagram_actor_id: string;
24 id: string;
25}