import { AbstractCrudObject } from "./../abstract-crud-object"; import Cursor from "./../cursor"; /** * Destination * @see {@link https://developers.facebook.com/docs/marketing-api/} */ export default class Destination extends AbstractCrudObject { static get Fields(): Readonly<{ address: "address"; applinks: "applinks"; category_specific_fields: "category_specific_fields"; currency: "currency"; custom_label_0: "custom_label_0"; custom_label_1: "custom_label_1"; custom_label_2: "custom_label_2"; custom_label_3: "custom_label_3"; custom_label_4: "custom_label_4"; custom_number_0: "custom_number_0"; custom_number_1: "custom_number_1"; custom_number_2: "custom_number_2"; custom_number_3: "custom_number_3"; custom_number_4: "custom_number_4"; description: "description"; destination_id: "destination_id"; id: "id"; image_fetch_status: "image_fetch_status"; images: "images"; name: "name"; price: "price"; price_change: "price_change"; sanitized_images: "sanitized_images"; tags: "tags"; types: "types"; unit_price: "unit_price"; url: "url"; visibility: "visibility"; }>; static get ImageFetchStatus(): Readonly<{ direct_upload: "DIRECT_UPLOAD"; fetched: "FETCHED"; fetch_failed: "FETCH_FAILED"; no_status: "NO_STATUS"; outdated: "OUTDATED"; partial_fetch: "PARTIAL_FETCH"; }>; static get Visibility(): Readonly<{ published: "PUBLISHED"; staging: "STAGING"; }>; getChannelsToIntegrityStatus(fields: string[], params?: Record, fetchFirstPage?: boolean): Cursor | Promise; getOverrideDetails(fields: string[], params?: Record, fetchFirstPage?: boolean): Cursor | Promise; getVideosMetadata(fields: string[], params?: Record, fetchFirstPage?: boolean): Cursor | Promise; get(fields: string[], params?: Record): Promise; }