UNPKG

instagram-graph-api

Version:

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

28 lines (27 loc) 809 B
import { AxiosResponse } from 'axios'; import { AbstractRequest } from '../../AbstractRequest'; import { GetHashtagIdResponse } from './GetHashtagIdResponse'; /** * A request that gets the id of an hashtag. * * @author Tiago Grosso <tiagogrosso99@gmail.com> * @since 0.4.0 */ export declare class GetHashtagIdRequest extends AbstractRequest<GetHashtagIdResponse> { /** * The constructor * * @param accessToken the access token. * @param userId the id of the user making the request * @param hashtag the hashtag. */ constructor(accessToken: string, userId: string, hashtag: string); /** * @inheritdoc */ protected parseResponse(response: AxiosResponse<never>): GetHashtagIdResponse; /** * @inheritdoc */ protected url(): string; }