UNPKG

@types/facebook-nodejs-business-sdk

Version:
17 lines (16 loc) 509 B
import { AbstractCrudObject } from "./../abstract-crud-object"; /** * OffsitePixel * @see {@link https://developers.facebook.com/docs/marketing-api/} */ export default class OffsitePixel extends AbstractCrudObject { static get Fields(): Readonly<{ creator: "creator"; id: "id"; js_pixel: "js_pixel"; last_firing_time: "last_firing_time"; name: "name"; tag: "tag"; }>; get(fields: string[], params?: Record<string, any>): Promise<OffsitePixel>; }