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

109 lines
3.7 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 AdReportRunFields extends AbstractEnum {
const ACCOUNT_ID = 'account_id';
const ASYNC_PERCENT_COMPLETION = 'async_percent_completion';
const ASYNC_REPORT_URL = 'async_report_url';
const ASYNC_STATUS = 'async_status';
const DATE_START = 'date_start';
const DATE_STOP = 'date_stop';
const EMAILS = 'emails';
const ERROR_CODE = 'error_code';
const FRIENDLY_NAME = 'friendly_name';
const ID = 'id';
const IS_ASYNC_EXPORT = 'is_async_export';
const IS_BOOKMARKED = 'is_bookmarked';
const IS_RUNNING = 'is_running';
const SCHEDULE_ID = 'schedule_id';
const TIME_COMPLETED = 'time_completed';
const TIME_REF = 'time_ref';
const ACTION_ATTRIBUTION_WINDOWS = 'action_attribution_windows';
const ACTION_BREAKDOWNS = 'action_breakdowns';
const ACTION_REPORT_TIME = 'action_report_time';
const BREAKDOWNS = 'breakdowns';
const DATE_PRESET = 'date_preset';
const DEFAULT_SUMMARY = 'default_summary';
const EXPORT_COLUMNS = 'export_columns';
const EXPORT_FORMAT = 'export_format';
const EXPORT_NAME = 'export_name';
const FIELDS = 'fields';
const FILTERING = 'filtering';
const GRAPH_CACHE = 'graph_cache';
const LEVEL = 'level';
const LIMIT = 'limit';
const PRODUCT_ID_LIMIT = 'product_id_limit';
const SORT = 'sort';
const SUMMARY = 'summary';
const SUMMARY_ACTION_BREAKDOWNS = 'summary_action_breakdowns';
const TIME_INCREMENT = 'time_increment';
const TIME_RANGE = 'time_range';
const TIME_RANGES = 'time_ranges';
const USE_ACCOUNT_ATTRIBUTION_SETTING = 'use_account_attribution_setting';
const USE_UNIFIED_ATTRIBUTION_SETTING = 'use_unified_attribution_setting';
public function getFieldTypes() {
return array(
'account_id' => 'string',
'async_percent_completion' => 'unsigned int',
'async_report_url' => 'string',
'async_status' => 'string',
'date_start' => 'string',
'date_stop' => 'string',
'emails' => 'list<string>',
'error_code' => 'unsigned int',
'friendly_name' => 'string',
'id' => 'string',
'is_async_export' => 'int',
'is_bookmarked' => 'bool',
'is_running' => 'bool',
'schedule_id' => 'string',
'time_completed' => 'unsigned int',
'time_ref' => 'unsigned int',
'action_attribution_windows' => 'list<ActionAttributionWindows>',
'action_breakdowns' => 'list<ActionBreakdowns>',
'action_report_time' => 'ActionReportTime',
'breakdowns' => 'list<Breakdowns>',
'date_preset' => 'DatePreset',
'default_summary' => 'bool',
'export_columns' => 'list<string>',
'export_format' => 'string',
'export_name' => 'string',
'fields' => 'list<string>',
'filtering' => 'list<Object>',
'graph_cache' => 'bool',
'level' => 'Level',
'limit' => 'int',
'product_id_limit' => 'int',
'sort' => 'list<string>',
'summary' => 'list<string>',
'summary_action_breakdowns' => 'list<SummaryActionBreakdowns>',
'time_increment' => 'string',
'time_range' => 'map',
'time_ranges' => 'list<map>',
'use_account_attribution_setting' => 'bool',
'use_unified_attribution_setting' => 'bool',
);
}
}