facebook-nodejs-business-sdk
Version:
SDK for the Facebook Marketing API in Javascript and Node.js
42 lines (38 loc) • 1.34 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';
/**
* AdCreativeVideoData
* @extends AbstractCrudObject
* @see {@link https://developers.facebook.com/docs/marketing-api/}
*/
export default class AdCreativeVideoData extends AbstractCrudObject {
static get Fields (): Object {
return Object.freeze({
additional_image_index: 'additional_image_index',
branded_content_shared_to_sponsor_status: 'branded_content_shared_to_sponsor_status',
branded_content_sponsor_page_id: 'branded_content_sponsor_page_id',
call_to_action: 'call_to_action',
collection_thumbnails: 'collection_thumbnails',
customization_rules_spec: 'customization_rules_spec',
image_hash: 'image_hash',
image_url: 'image_url',
link_description: 'link_description',
message: 'message',
offer_id: 'offer_id',
page_welcome_message: 'page_welcome_message',
post_click_configuration: 'post_click_configuration',
retailer_item_ids: 'retailer_item_ids',
targeting: 'targeting',
title: 'title',
video_id: 'video_id',
});
}
}