Files
2026-04-28 15:13:50 +02:00

77 lines
2.2 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 AdAccountTargetingUnifiedFields extends AbstractEnum {
const AUDIENCE_SIZE_LOWER_BOUND = 'audience_size_lower_bound';
const AUDIENCE_SIZE_UPPER_BOUND = 'audience_size_upper_bound';
const CONVERSION_LIFT = 'conversion_lift';
const DESCRIPTION = 'description';
const ID = 'id';
const IMG = 'img';
const INFO = 'info';
const INFO_TITLE = 'info_title';
const IS_RECOMMENDATION = 'is_recommendation';
const KEY = 'key';
const LINK = 'link';
const NAME = 'name';
const PARENT = 'parent';
const PARTNER = 'partner';
const PATH = 'path';
const PERFORMANCE_RATING = 'performance_rating';
const RAW_NAME = 'raw_name';
const RECOMMENDATION_MODEL = 'recommendation_model';
const SEARCH_INTEREST_ID = 'search_interest_id';
const SOURCE = 'source';
const SPEND = 'spend';
const TYPE = 'type';
const VALID = 'valid';
public function getFieldTypes() {
return array(
'audience_size_lower_bound' => 'unsigned int',
'audience_size_upper_bound' => 'unsigned int',
'conversion_lift' => 'float',
'description' => 'string',
'id' => 'string',
'img' => 'string',
'info' => 'string',
'info_title' => 'string',
'is_recommendation' => 'bool',
'key' => 'string',
'link' => 'string',
'name' => 'string',
'parent' => 'string',
'partner' => 'string',
'path' => 'list<string>',
'performance_rating' => 'unsigned int',
'raw_name' => 'string',
'recommendation_model' => 'string',
'search_interest_id' => 'string',
'source' => 'string',
'spend' => 'float',
'type' => 'string',
'valid' => 'bool',
);
}
}