UNPKG

instagram-graph-api

Version:

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

18 lines (17 loc) 451 B
import { AbstractResponse } from '../AbstractResponse'; /** * Class that represents a response from a Post Media Comment request. * * @author Tiago Grosso <tiagogrosso99@gmail.com> * @since 0.5.0 */ export declare class CreatedObjectIdResponse extends AbstractResponse<{ id: string; }> { /** * Gets the id of the comment that was created. * * @returns the id of the comment that was created. */ getId(): string; }