import { AbstractCrudObject } from "./../abstract-crud-object"; import AbstractObject from "./../abstract-object"; import Cursor from "./../cursor"; /** * ProductSet * @see {@link https://developers.facebook.com/docs/marketing-api/} */ export default class ProductSet extends AbstractCrudObject { static get Fields(): Readonly<{ auto_creation_url: "auto_creation_url"; filter: "filter"; id: "id"; latest_metadata: "latest_metadata"; live_metadata: "live_metadata"; name: "name"; ordering_info: "ordering_info"; product_catalog: "product_catalog"; product_count: "product_count"; retailer_id: "retailer_id"; }>; getAutomotiveModels(fields: string[], params?: Record, fetchFirstPage?: boolean): Cursor | Promise; getDestinations(fields: string[], params?: Record, fetchFirstPage?: boolean): Cursor | Promise; getFlights(fields: string[], params?: Record, fetchFirstPage?: boolean): Cursor | Promise; getHomeListings(fields: string[], params?: Record, fetchFirstPage?: boolean): Cursor | Promise; getHotels(fields: string[], params?: Record, fetchFirstPage?: boolean): Cursor | Promise; getMediaTitles(fields: string[], params?: Record, fetchFirstPage?: boolean): Cursor | Promise; getProducts(fields: string[], params?: Record, fetchFirstPage?: boolean): Cursor | Promise; getVehicleOffers(fields: string[], params?: Record, fetchFirstPage?: boolean): Cursor | Promise; getVehicles(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; }