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

149 lines
5.0 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 HomeListingFields extends AbstractEnum {
const AC_TYPE = 'ac_type';
const ADDITIONAL_FEES_DESCRIPTION = 'additional_fees_description';
const ADDRESS = 'address';
const AGENT_COMPANY = 'agent_company';
const AGENT_EMAIL = 'agent_email';
const AGENT_FB_PAGE_ID = 'agent_fb_page_id';
const AGENT_NAME = 'agent_name';
const AGENT_PHONE = 'agent_phone';
const APPLINKS = 'applinks';
const AREA_SIZE = 'area_size';
const AREA_UNIT = 'area_unit';
const AVAILABILITY = 'availability';
const CATEGORY_SPECIFIC_FIELDS = 'category_specific_fields';
const CO_2_EMISSION_RATING_EU = 'co_2_emission_rating_eu';
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 DAYS_ON_MARKET = 'days_on_market';
const DESCRIPTION = 'description';
const ENERGY_RATING_EU = 'energy_rating_eu';
const FURNISH_TYPE = 'furnish_type';
const GROUP_ID = 'group_id';
const HEATING_TYPE = 'heating_type';
const HOME_LISTING_ID = 'home_listing_id';
const ID = 'id';
const IMAGE_FETCH_STATUS = 'image_fetch_status';
const IMAGES = 'images';
const LAUNDRY_TYPE = 'laundry_type';
const LISTING_TYPE = 'listing_type';
const MAX_CURRENCY = 'max_currency';
const MAX_PRICE = 'max_price';
const MIN_CURRENCY = 'min_currency';
const MIN_PRICE = 'min_price';
const NAME = 'name';
const NUM_BATHS = 'num_baths';
const NUM_BEDS = 'num_beds';
const NUM_ROOMS = 'num_rooms';
const NUM_UNITS = 'num_units';
const PARKING_TYPE = 'parking_type';
const PARTNER_VERIFICATION = 'partner_verification';
const PET_POLICY = 'pet_policy';
const PRICE = 'price';
const PROPERTY_TYPE = 'property_type';
const SANITIZED_IMAGES = 'sanitized_images';
const SECURITYDEPOSIT_CURRENCY = 'securitydeposit_currency';
const SECURITYDEPOSIT_PRICE = 'securitydeposit_price';
const TAGS = 'tags';
const UNIT_PRICE = 'unit_price';
const URL = 'url';
const VISIBILITY = 'visibility';
const YEAR_BUILT = 'year_built';
public function getFieldTypes() {
return array(
'ac_type' => 'string',
'additional_fees_description' => 'string',
'address' => 'Object',
'agent_company' => 'string',
'agent_email' => 'string',
'agent_fb_page_id' => 'Page',
'agent_name' => 'string',
'agent_phone' => 'string',
'applinks' => 'CatalogItemAppLinks',
'area_size' => 'unsigned int',
'area_unit' => 'string',
'availability' => 'string',
'category_specific_fields' => 'CatalogSubVerticalList',
'co_2_emission_rating_eu' => 'Object',
'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',
'days_on_market' => 'unsigned int',
'description' => 'string',
'energy_rating_eu' => 'Object',
'furnish_type' => 'string',
'group_id' => 'string',
'heating_type' => 'string',
'home_listing_id' => 'string',
'id' => 'string',
'image_fetch_status' => 'ImageFetchStatus',
'images' => 'list<string>',
'laundry_type' => 'string',
'listing_type' => 'string',
'max_currency' => 'string',
'max_price' => 'string',
'min_currency' => 'string',
'min_price' => 'string',
'name' => 'string',
'num_baths' => 'float',
'num_beds' => 'float',
'num_rooms' => 'float',
'num_units' => 'unsigned int',
'parking_type' => 'string',
'partner_verification' => 'string',
'pet_policy' => 'string',
'price' => 'string',
'property_type' => 'string',
'sanitized_images' => 'list<string>',
'securitydeposit_currency' => 'string',
'securitydeposit_price' => 'string',
'tags' => 'list<string>',
'unit_price' => 'Object',
'url' => 'string',
'visibility' => 'Visibility',
'year_built' => 'int',
);
}
}