src/FacebookAds/Object/Fields/AdAccountTargetingUnifiedFields.php (55 lines of code) (raw):
<?php
/**
* Copyright (c) 2015-present, Facebook, Inc. All rights reserved.
*
* You are hereby granted a non-exclusive, worldwide, royalty-free license to
* use, copy, modify, and distribute this software in source code or binary
* form for use in connection with the web services and APIs provided by
* Facebook.
*
* As with any software that integrates with the Facebook platform, your use
* of this software is subject to the Facebook Developer Principles and
* Policies [http://developers.facebook.com/policy/]. This copyright notice
* shall be included in all copies or substantial portions of the software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
*/
namespace FacebookAds\Object\Fields;
use 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',
);
}
}