import { AbstractCrudObject } from "./../abstract-crud-object"; /** * Organization * @see {@link https://developers.facebook.com/docs/marketing-api/} */ export default class Organization extends AbstractCrudObject { static get Fields(): Readonly<{ id: "id"; legal_entity_name: "legal_entity_name"; owner_business: "owner_business"; }>; get(fields: string[], params?: Record): Promise; }