UNPKG

@types/facebook-nodejs-business-sdk

Version:
16 lines (15 loc) 565 B
import { AbstractCrudObject } from "./../abstract-crud-object"; /** * IGRefreshAccessTokenForIGOnlyAPI * @see {@link https://developers.facebook.com/docs/marketing-api/} */ export default class IGRefreshAccessTokenForIGOnlyAPI extends AbstractCrudObject { static get Fields(): Readonly<{ access_token: "access_token"; expires_in: "expires_in"; permissions: "permissions"; token_type: "token_type"; id: "id"; }>; get(fields: string[], params?: Record<string, any>): Promise<IGRefreshAccessTokenForIGOnlyAPI>; }