UNPKG

instagram-graph-api

Version:

A library to help perform requests to the Instagram Graph API.

20 lines (19 loc) 740 B
import { AbstractGetInsightsResponse } from '../../AbstractGetInsightsResponse'; import { ComplexMetric, ComplexMetricValue } from '../../data/insights/ComplexMetric'; import { BasicInsightsMetricData, MetricValue } from '../../data/insights/BasicInsightsMetricData'; /** * Class that represents a response from a Page Insights request for Lifetime metrics. * * @author Tiago Grosso <tiagogrosso99@gmail.com> * @since 0.1.0 */ export declare class GetPageLifetimeInsightsResponse extends AbstractGetInsightsResponse<ComplexMetric> { /** * The constructor. * * @param body the body of the response. */ constructor(body: { data: BasicInsightsMetricData<MetricValue<ComplexMetricValue>[]>[]; }); }