import { AbstractCrudObject } from "./../abstract-crud-object"; import AbstractObject from "./../abstract-object"; import Cursor from "./../cursor"; /** * AdLabel * @see {@link https://developers.facebook.com/docs/marketing-api/} */ export default class AdLabel extends AbstractCrudObject { static get Fields(): Readonly<{ account: "account"; created_time: "created_time"; id: "id"; name: "name"; updated_time: "updated_time"; }>; getAdCreatives(fields: string[], params?: Record, fetchFirstPage?: boolean): Cursor | Promise; getAds(fields: string[], params?: Record, fetchFirstPage?: boolean): Cursor | Promise; getAdSets(fields: string[], params?: Record, fetchFirstPage?: boolean): Cursor | Promise; getCampaigns(fields: string[], params?: Record, fetchFirstPage?: boolean): Cursor | Promise; delete(fields: string[], params?: Record): Promise; get(fields: string[], params?: Record): Promise; update(fields: string[], params?: Record): Promise; }