UNPKG

facebook-nodejs-business-sdk

Version:
35 lines (32 loc) 829 B
/** * Copyright (c) 2017-present, Facebook, Inc. * 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'; /** * BusinessSettingLogsData * @extends AbstractCrudObject * @see {@link https://developers.facebook.com/docs/marketing-api/} */ export default class BusinessSettingLogsData extends AbstractCrudObject { static get Fields () { return Object.freeze({ actor: 'actor', event_object: 'event_object', event_time: 'event_time', event_type: 'event_type', extra_data: 'extra_data', id: 'id' }); } get (fields, params): BusinessSettingLogsData { return this.read( fields, params ); } }