UNPKG

@types/facebook-nodejs-business-sdk

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