44 lines
1.5 KiB
PHP
44 lines
1.5 KiB
PHP
<?php
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
namespace FacebookPixelPlugin\FacebookAds\Object\Values;
|
|
|
|
use FacebookPixelPlugin\FacebookAds\Enum\AbstractEnum;
|
|
|
|
/**
|
|
* This class is auto-generated.
|
|
*
|
|
* For any issues or feature requests related to this class, please let us know
|
|
* on github and we'll fix in our codegen framework. We'll not be able to accept
|
|
* pull request for this class.
|
|
*
|
|
* @method static AdStudyCellCreationTemplateValues getInstance()
|
|
*/
|
|
class AdStudyCellCreationTemplateValues extends AbstractEnum {
|
|
|
|
const AUTOMATIC_PLACEMENTS = 'AUTOMATIC_PLACEMENTS';
|
|
const BRAND_AWARENESS = 'BRAND_AWARENESS';
|
|
const FACEBOOK = 'FACEBOOK';
|
|
const FACEBOOK_AUDIENCE_NETWORK = 'FACEBOOK_AUDIENCE_NETWORK';
|
|
const FACEBOOK_INSTAGRAM = 'FACEBOOK_INSTAGRAM';
|
|
const FACEBOOK_NEWS_FEED = 'FACEBOOK_NEWS_FEED';
|
|
const FACEBOOK_NEWS_FEED_IN_STREAM_VIDEO = 'FACEBOOK_NEWS_FEED_IN_STREAM_VIDEO';
|
|
const HIGH_FREQUENCY = 'HIGH_FREQUENCY';
|
|
const INSTAGRAM = 'INSTAGRAM';
|
|
const IN_STREAM_VIDEO = 'IN_STREAM_VIDEO';
|
|
const LOW_FREQUENCY = 'LOW_FREQUENCY';
|
|
const MEDIUM_FREQUENCY = 'MEDIUM_FREQUENCY';
|
|
const MOBILE_OPTIMIZED_VIDEO = 'MOBILE_OPTIMIZED_VIDEO';
|
|
const PAGE_POST_ENGAGEMENT = 'PAGE_POST_ENGAGEMENT';
|
|
const REACH = 'REACH';
|
|
const TV_COMMERCIAL = 'TV_COMMERCIAL';
|
|
const TV_FACEBOOK = 'TV_FACEBOOK';
|
|
const VIDEO_VIEW_OPTIMIZATION = 'VIDEO_VIEW_OPTIMIZATION';
|
|
}
|