UNPKG

@types/facebook-nodejs-business-sdk

Version:
15 lines (14 loc) 436 B
import { AbstractCrudObject } from "./../abstract-crud-object"; /** * Place * @see {@link https://developers.facebook.com/docs/marketing-api/} */ export default class Place extends AbstractCrudObject { static get Fields(): Readonly<{ id: "id"; location: "location"; name: "name"; overall_rating: "overall_rating"; }>; get(fields: string[], params?: Record<string, any>): Promise<Place>; }