facebook-nodejs-business-sdk
Version:
SDK for the Facebook Marketing API in Javascript and Node.js
41 lines (37 loc) • 1.18 kB
JavaScript
/*
* 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';
/**
* BusinessCreativeInsights
* @extends AbstractCrudObject
* @see {@link https://developers.facebook.com/docs/marketing-api/}
*/
export default class BusinessCreativeInsights extends AbstractCrudObject {
static get Fields (): Object {
return Object.freeze({
actions: 'actions',
age: 'age',
country: 'country',
date_end: 'date_end',
date_start: 'date_start',
device_platform: 'device_platform',
gender: 'gender',
impressions: 'impressions',
inline_link_clicks: 'inline_link_clicks',
objective: 'objective',
optimization_goal: 'optimization_goal',
platform_position: 'platform_position',
publisher_platform: 'publisher_platform',
quality_ranking: 'quality_ranking',
video_play_actions: 'video_play_actions',
video_thruplay_watched_actions: 'video_thruplay_watched_actions',
});
}
}