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

103 lines
3.4 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 EventFields extends AbstractEnum {
const ATTENDING_COUNT = 'attending_count';
const CAN_GUESTS_INVITE = 'can_guests_invite';
const CATEGORY = 'category';
const COVER = 'cover';
const CREATED_TIME = 'created_time';
const DECLINED_COUNT = 'declined_count';
const DESCRIPTION = 'description';
const DISCOUNT_CODE_ENABLED = 'discount_code_enabled';
const END_TIME = 'end_time';
const EVENT_TIMES = 'event_times';
const GUEST_LIST_ENABLED = 'guest_list_enabled';
const ID = 'id';
const INTERESTED_COUNT = 'interested_count';
const IS_CANCELED = 'is_canceled';
const IS_DRAFT = 'is_draft';
const IS_ONLINE = 'is_online';
const IS_PAGE_OWNED = 'is_page_owned';
const MAYBE_COUNT = 'maybe_count';
const NAME = 'name';
const NOREPLY_COUNT = 'noreply_count';
const ONLINE_EVENT_FORMAT = 'online_event_format';
const ONLINE_EVENT_THIRD_PARTY_URL = 'online_event_third_party_url';
const OWNER = 'owner';
const PARENT_GROUP = 'parent_group';
const PLACE = 'place';
const REGISTRATION_SETTING = 'registration_setting';
const SCHEDULED_PUBLISH_TIME = 'scheduled_publish_time';
const START_TIME = 'start_time';
const TICKET_SETTING = 'ticket_setting';
const TICKET_URI = 'ticket_uri';
const TICKET_URI_START_SALES_TIME = 'ticket_uri_start_sales_time';
const TICKETING_PRIVACY_URI = 'ticketing_privacy_uri';
const TICKETING_TERMS_URI = 'ticketing_terms_uri';
const TIMEZONE = 'timezone';
const TYPE = 'type';
const UPDATED_TIME = 'updated_time';
public function getFieldTypes() {
return array(
'attending_count' => 'int',
'can_guests_invite' => 'bool',
'category' => 'Category',
'cover' => 'CoverPhoto',
'created_time' => 'datetime',
'declined_count' => 'int',
'description' => 'string',
'discount_code_enabled' => 'bool',
'end_time' => 'string',
'event_times' => 'list<ChildEvent>',
'guest_list_enabled' => 'bool',
'id' => 'string',
'interested_count' => 'int',
'is_canceled' => 'bool',
'is_draft' => 'bool',
'is_online' => 'bool',
'is_page_owned' => 'bool',
'maybe_count' => 'int',
'name' => 'string',
'noreply_count' => 'int',
'online_event_format' => 'OnlineEventFormat',
'online_event_third_party_url' => 'string',
'owner' => 'Object',
'parent_group' => 'Group',
'place' => 'Place',
'registration_setting' => 'EventRegistrationSetting',
'scheduled_publish_time' => 'string',
'start_time' => 'string',
'ticket_setting' => 'EventTicketSetting',
'ticket_uri' => 'string',
'ticket_uri_start_sales_time' => 'string',
'ticketing_privacy_uri' => 'string',
'ticketing_terms_uri' => 'string',
'timezone' => 'string',
'type' => 'Type',
'updated_time' => 'datetime',
);
}
}