UNPKG

facebook-nodejs-business-sdk

Version:
45 lines (41 loc) 1.08 kB
/** * 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'; /** * AdsPixelRawFiresResult * @extends AbstractCrudObject * @see {@link https://developers.facebook.com/docs/marketing-api/} */ export default class AdsPixelRawFiresResult extends AbstractCrudObject { static get Fields () { return Object.freeze({ data_json: 'data_json', device_type: 'device_type', event: 'event', event_detection_method: 'event_detection_method', placed_url: 'placed_url', timestamp: 'timestamp', id: 'id' }); } static get FilterType (): Object { return Object.freeze({ device_type: 'device_type', event_detection_method: 'event_detection_method', host: 'host', url: 'url' }); } get (fields, params): AdsPixelRawFiresResult { return this.read( fields, params ); } }