1 | <?php |
||
38 | class AdSetFields extends AbstractEnum { |
||
39 | |||
40 | const ACCOUNT_ID = 'account_id'; |
||
41 | const ADLABELS = 'adlabels'; |
||
42 | const ADSET_SCHEDULE = 'adset_schedule'; |
||
43 | const BID_AMOUNT = 'bid_amount'; |
||
44 | const BID_INFO = 'bid_info'; |
||
45 | const BILLING_EVENT = 'billing_event'; |
||
46 | const BUDGET_REMAINING = 'budget_remaining'; |
||
47 | const CAMPAIGN = 'campaign'; |
||
48 | const CAMPAIGN_ID = 'campaign_id'; |
||
49 | const CONFIGURED_STATUS = 'configured_status'; |
||
50 | const CREATED_TIME = 'created_time'; |
||
51 | const CREATIVE_SEQUENCE = 'creative_sequence'; |
||
52 | const DAILY_BUDGET = 'daily_budget'; |
||
53 | const EFFECTIVE_STATUS = 'effective_status'; |
||
54 | const END_TIME = 'end_time'; |
||
55 | const FREQUENCY_CAP = 'frequency_cap'; |
||
56 | const FREQUENCY_CAP_RESET_PERIOD = 'frequency_cap_reset_period'; |
||
57 | const FREQUENCY_CONTROL_SPECS = 'frequency_control_specs'; |
||
58 | const ID = 'id'; |
||
59 | const IS_AUTOBID = 'is_autobid'; |
||
60 | const LIFETIME_BUDGET = 'lifetime_budget'; |
||
61 | const LIFETIME_FREQUENCY_CAP = 'lifetime_frequency_cap'; |
||
62 | const LIFETIME_IMPS = 'lifetime_imps'; |
||
63 | const NAME = 'name'; |
||
64 | const OPTIMIZATION_GOAL = 'optimization_goal'; |
||
65 | const PACING_TYPE = 'pacing_type'; |
||
66 | const PROMOTED_OBJECT = 'promoted_object'; |
||
67 | const RECOMMENDATIONS = 'recommendations'; |
||
68 | const RF_PREDICTION_ID = 'rf_prediction_id'; |
||
69 | const RTB_FLAG = 'rtb_flag'; |
||
70 | const START_TIME = 'start_time'; |
||
71 | const STATUS = 'status'; |
||
72 | const TARGETING = 'targeting'; |
||
73 | const UPDATED_TIME = 'updated_time'; |
||
74 | const USE_NEW_APP_CLICK = 'use_new_app_click'; |
||
75 | const DAILY_IMPS = 'daily_imps'; |
||
76 | const EXECUTION_OPTIONS = 'execution_options'; |
||
77 | const REDOWNLOAD = 'redownload'; |
||
78 | |||
79 | public function getFieldTypes() { |
||
121 | } |
||
122 |