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

153 lines
5.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 VehicleOfferFields extends AbstractEnum {
const AMOUNT_CURRENCY = 'amount_currency';
const AMOUNT_PERCENTAGE = 'amount_percentage';
const AMOUNT_PRICE = 'amount_price';
const AMOUNT_QUALIFIER = 'amount_qualifier';
const APPLINKS = 'applinks';
const AVAILABILITY = 'availability';
const BODY_STYLE = 'body_style';
const CASHBACK_CURRENCY = 'cashback_currency';
const CASHBACK_PRICE = 'cashback_price';
const CATEGORY_SPECIFIC_FIELDS = 'category_specific_fields';
const CURRENCY = 'currency';
const CUSTOM_LABEL_0 = 'custom_label_0';
const CUSTOM_LABEL_1 = 'custom_label_1';
const CUSTOM_LABEL_2 = 'custom_label_2';
const CUSTOM_LABEL_3 = 'custom_label_3';
const CUSTOM_LABEL_4 = 'custom_label_4';
const CUSTOM_NUMBER_0 = 'custom_number_0';
const CUSTOM_NUMBER_1 = 'custom_number_1';
const CUSTOM_NUMBER_2 = 'custom_number_2';
const CUSTOM_NUMBER_3 = 'custom_number_3';
const CUSTOM_NUMBER_4 = 'custom_number_4';
const DMA_CODES = 'dma_codes';
const DOWNPAYMENT_CURRENCY = 'downpayment_currency';
const DOWNPAYMENT_PRICE = 'downpayment_price';
const DOWNPAYMENT_QUALIFIER = 'downpayment_qualifier';
const DRIVETRAIN = 'drivetrain';
const END_DATE = 'end_date';
const END_TIME = 'end_time';
const EXTERIOR_COLOR = 'exterior_color';
const FUEL_TYPE = 'fuel_type';
const GENERATION = 'generation';
const ID = 'id';
const IMAGE_FETCH_STATUS = 'image_fetch_status';
const IMAGES = 'images';
const INTERIOR_COLOR = 'interior_color';
const INTERIOR_UPHOLSTERY = 'interior_upholstery';
const MAKE = 'make';
const MODEL = 'model';
const OFFER_DESCRIPTION = 'offer_description';
const OFFER_DISCLAIMER = 'offer_disclaimer';
const OFFER_TYPE = 'offer_type';
const PRICE = 'price';
const PRODUCT_PRIORITY_0 = 'product_priority_0';
const PRODUCT_PRIORITY_1 = 'product_priority_1';
const PRODUCT_PRIORITY_2 = 'product_priority_2';
const PRODUCT_PRIORITY_3 = 'product_priority_3';
const PRODUCT_PRIORITY_4 = 'product_priority_4';
const SANITIZED_IMAGES = 'sanitized_images';
const START_DATE = 'start_date';
const START_TIME = 'start_time';
const TAGS = 'tags';
const TERM_LENGTH = 'term_length';
const TERM_QUALIFIER = 'term_qualifier';
const TITLE = 'title';
const TRANSMISSION = 'transmission';
const TRIM = 'trim';
const UNIT_PRICE = 'unit_price';
const URL = 'url';
const VEHICLE_OFFER_ID = 'vehicle_offer_id';
const VISIBILITY = 'visibility';
const YEAR = 'year';
public function getFieldTypes() {
return array(
'amount_currency' => 'string',
'amount_percentage' => 'float',
'amount_price' => 'string',
'amount_qualifier' => 'string',
'applinks' => 'CatalogItemAppLinks',
'availability' => 'string',
'body_style' => 'string',
'cashback_currency' => 'string',
'cashback_price' => 'string',
'category_specific_fields' => 'CatalogSubVerticalList',
'currency' => 'string',
'custom_label_0' => 'string',
'custom_label_1' => 'string',
'custom_label_2' => 'string',
'custom_label_3' => 'string',
'custom_label_4' => 'string',
'custom_number_0' => 'unsigned int',
'custom_number_1' => 'unsigned int',
'custom_number_2' => 'unsigned int',
'custom_number_3' => 'unsigned int',
'custom_number_4' => 'unsigned int',
'dma_codes' => 'list<string>',
'downpayment_currency' => 'string',
'downpayment_price' => 'string',
'downpayment_qualifier' => 'string',
'drivetrain' => 'string',
'end_date' => 'string',
'end_time' => 'int',
'exterior_color' => 'string',
'fuel_type' => 'string',
'generation' => 'string',
'id' => 'string',
'image_fetch_status' => 'ImageFetchStatus',
'images' => 'list<string>',
'interior_color' => 'string',
'interior_upholstery' => 'string',
'make' => 'string',
'model' => 'string',
'offer_description' => 'string',
'offer_disclaimer' => 'string',
'offer_type' => 'string',
'price' => 'string',
'product_priority_0' => 'float',
'product_priority_1' => 'float',
'product_priority_2' => 'float',
'product_priority_3' => 'float',
'product_priority_4' => 'float',
'sanitized_images' => 'list<string>',
'start_date' => 'string',
'start_time' => 'int',
'tags' => 'list<string>',
'term_length' => 'unsigned int',
'term_qualifier' => 'string',
'title' => 'string',
'transmission' => 'string',
'trim' => 'string',
'unit_price' => 'Object',
'url' => 'string',
'vehicle_offer_id' => 'string',
'visibility' => 'Visibility',
'year' => 'int',
);
}
}