UNPKG

instagram-graph-api

Version:

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

25 lines (24 loc) 478 B
/** * Basic info of connected Instagram account. * * @author Andres Gutierrez <andres99@gmail.com> * @since 2.0.0 */ export interface InstagramAccountInfoData { /** * The instagram account id. */ id: string; /** * The instagram account username. */ username: string; /** * The instagram account name. */ name: string; /** * The instagram account profile picture URL. */ profile_picture_url: string; }