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

51 lines
1.3 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 ProductFeedScheduleFields extends AbstractEnum {
const DAY_OF_MONTH = 'day_of_month';
const DAY_OF_WEEK = 'day_of_week';
const HOUR = 'hour';
const ID = 'id';
const INTERVAL = 'interval';
const INTERVAL_COUNT = 'interval_count';
const MINUTE = 'minute';
const TIMEZONE = 'timezone';
const URL = 'url';
const USERNAME = 'username';
public function getFieldTypes() {
return array(
'day_of_month' => 'unsigned int',
'day_of_week' => 'string',
'hour' => 'unsigned int',
'id' => 'string',
'interval' => 'Interval',
'interval_count' => 'unsigned int',
'minute' => 'unsigned int',
'timezone' => 'string',
'url' => 'string',
'username' => 'string',
);
}
}