UNPKG

facebook-nodejs-business-sdk

Version:

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

41 lines (35 loc) 980 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'; /** * RightsManagerDataExport * @extends AbstractCrudObject * @see {@link https://developers.facebook.com/docs/marketing-api/} */ export default class RightsManagerDataExport extends AbstractCrudObject { static get Fields (): Object { return Object.freeze({ download_uri: 'download_uri', export_scope: 'export_scope', id: 'id', name: 'name', record_type: 'record_type', time_range_end: 'time_range_end', time_range_start: 'time_range_start', }); } get (fields: Array<string>, params: Object = {}): RightsManagerDataExport { // $FlowFixMe : Support Generic Types return this.read( fields, params ); } }