UNPKG

@types/facebook-nodejs-business-sdk

Version:
18 lines (17 loc) 562 B
import { AbstractCrudObject } from "./../abstract-crud-object"; /** * AdSavedKeywords * @see {@link https://developers.facebook.com/docs/marketing-api/} */ export default class AdSavedKeywords extends AbstractCrudObject { static get Fields(): Readonly<{ account: "account"; id: "id"; keywords: "keywords"; name: "name"; run_status: "run_status"; time_created: "time_created"; time_updated: "time_updated"; }>; get(fields: string[], params?: Record<string, any>): Promise<AdSavedKeywords>; }