47 lines
1.3 KiB
PHP
47 lines
1.3 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\Fields;
|
|
|
|
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.
|
|
*
|
|
*/
|
|
|
|
class AdCreativeFeatureCustomizationsFields extends AbstractEnum {
|
|
|
|
const BACKGROUND_COLOR = 'background_color';
|
|
const CATALOG_FEED_TAG_NAME = 'catalog_feed_tag_name';
|
|
const FONT_NAME = 'font_name';
|
|
const IMAGE_CROP_STYLE = 'image_crop_style';
|
|
const PE_CAROUSEL = 'pe_carousel';
|
|
const SHOWCASE_CARD_DISPLAY = 'showcase_card_display';
|
|
const TEXT_EXTRACTION = 'text_extraction';
|
|
const TEXT_STYLE = 'text_style';
|
|
|
|
public function getFieldTypes() {
|
|
return array(
|
|
'background_color' => 'string',
|
|
'catalog_feed_tag_name' => 'string',
|
|
'font_name' => 'string',
|
|
'image_crop_style' => 'string',
|
|
'pe_carousel' => 'Object',
|
|
'showcase_card_display' => 'string',
|
|
'text_extraction' => 'Object',
|
|
'text_style' => 'string',
|
|
);
|
|
}
|
|
}
|