37 lines
987 B
PHP
37 lines
987 B
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\Fields;
|
|
|
|
use FacebookPixelPlugin\FacebookAds\Enum\AbstractEnum;
|
|
|
|
/**
|
|
* @method static AdVideoFields getInstance()
|
|
*/
|
|
class AdVideoFields extends AbstractEnum {
|
|
|
|
const CREATED_TIME = 'created_time';
|
|
const DESCRIPTION = 'description';
|
|
const EMBED_HTML = 'embed_html';
|
|
const EMBEDDABLE = 'embeddable';
|
|
const FILE_URL = 'file_url';
|
|
const FORMAT = 'format';
|
|
const FROM = 'from';
|
|
const ICON = 'icon';
|
|
const ID = 'id';
|
|
const IS_INSTAGRAM_ELIGIBLE = 'is_instagram_eligible';
|
|
const NAME = 'name';
|
|
const PICTURE = 'picture';
|
|
const PUBLISHED = 'published';
|
|
const SLIDESHOW_SPEC = 'slideshow_spec';
|
|
const SOURCE = 'source';
|
|
const THUMBNAILS = 'thumbnails';
|
|
const UPDATED_TIME = 'updated_time';
|
|
}
|