instagram-graph-api
Version:
A library to help perform requests to the Instagram Graph API.
18 lines (17 loc) • 453 B
TypeScript
import { AbstractResponse } from '../AbstractResponse';
/**
* Class that represents a response from a request that creates an object.
*
* @author Tiago Grosso <tiagogrosso99@gmail.com>
* @since 0.5.0
*/
export declare class CreatedObjectIdResponse extends AbstractResponse<{
id: string;
}> {
/**
* Gets the id of the object that was created.
*
* @returns the id of the object that was created.
*/
getId(): string;
}