UNPKG

facebook-nodejs-business-sdk

Version:

SDK for the Facebook Marketing API in Javascript and Node.js

35 lines (31 loc) 984 B
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * All rights reserved. * * This source code is licensed under the license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import {AbstractCrudObject} from './../abstract-crud-object'; /** * MessengerProfile * @extends AbstractCrudObject * @see {@link https://developers.facebook.com/docs/marketing-api/} */ export default class MessengerProfile extends AbstractCrudObject { static get Fields (): Object { return Object.freeze({ account_linking_url: 'account_linking_url', commands: 'commands', get_started: 'get_started', greeting: 'greeting', ice_breakers: 'ice_breakers', payment_settings: 'payment_settings', persistent_menu: 'persistent_menu', subject_to_new_eu_privacy_rules: 'subject_to_new_eu_privacy_rules', target_audience: 'target_audience', whitelisted_domains: 'whitelisted_domains', }); } }