1 | <?php |
||
38 | class ReachFrequencyPredictionFields extends AbstractEnum { |
||
39 | |||
40 | const ACCOUNT_ID = 'account_id'; |
||
41 | const CAMPAIGN_GROUP_ID = 'campaign_group_id'; |
||
42 | const CAMPAIGN_ID = 'campaign_id'; |
||
43 | const CAMPAIGN_TIME_START = 'campaign_time_start'; |
||
44 | const CAMPAIGN_TIME_STOP = 'campaign_time_stop'; |
||
45 | const CURVE_BUDGET_REACH = 'curve_budget_reach'; |
||
46 | const DESTINATION_ID = 'destination_id'; |
||
47 | const EXPIRATION_TIME = 'expiration_time'; |
||
48 | const EXTERNAL_BUDGET = 'external_budget'; |
||
49 | const EXTERNAL_IMPRESSION = 'external_impression'; |
||
50 | const EXTERNAL_MAXIMUM_BUDGET = 'external_maximum_budget'; |
||
51 | const EXTERNAL_MAXIMUM_IMPRESSION = 'external_maximum_impression'; |
||
52 | const EXTERNAL_MAXIMUM_REACH = 'external_maximum_reach'; |
||
53 | const EXTERNAL_MINIMUM_BUDGET = 'external_minimum_budget'; |
||
54 | const EXTERNAL_MINIMUM_IMPRESSION = 'external_minimum_impression'; |
||
55 | const EXTERNAL_MINIMUM_REACH = 'external_minimum_reach'; |
||
56 | const EXTERNAL_REACH = 'external_reach'; |
||
57 | const FREQUENCY_CAP = 'frequency_cap'; |
||
58 | const GRP_DMAS_AUDIENCE_SIZE = 'grp_dmas_audience_size'; |
||
59 | const HOLDOUT_PERCENTAGE = 'holdout_percentage'; |
||
60 | const ID = 'id'; |
||
61 | const INSTAGRAM_DESTINATION_ID = 'instagram_destination_id'; |
||
62 | const INTERVAL_FREQUENCY_CAP_RESET_PERIOD = 'interval_frequency_cap_reset_period'; |
||
63 | const NAME = 'name'; |
||
64 | const PAUSE_PERIODS = 'pause_periods'; |
||
65 | const PREDICTION_MODE = 'prediction_mode'; |
||
66 | const PREDICTION_PROGRESS = 'prediction_progress'; |
||
67 | const RESERVATION_STATUS = 'reservation_status'; |
||
68 | const STATUS = 'status'; |
||
69 | const STORY_EVENT_TYPE = 'story_event_type'; |
||
70 | const TARGET_AUDIENCE_SIZE = 'target_audience_size'; |
||
71 | const TARGET_SPEC = 'target_spec'; |
||
72 | const TIME_CREATED = 'time_created'; |
||
73 | const TIME_UPDATED = 'time_updated'; |
||
74 | const BUDGET = 'budget'; |
||
75 | const DESTINATION_IDS = 'destination_ids'; |
||
76 | const END_TIME = 'end_time'; |
||
77 | const NUM_CURVE_POINTS = 'num_curve_points'; |
||
78 | const OBJECTIVE = 'objective'; |
||
79 | const REACH = 'reach'; |
||
80 | const RF_PREDICTION_ID_TO_SHARE = 'rf_prediction_id_to_share'; |
||
81 | const START_TIME = 'start_time'; |
||
82 | const STOP_TIME = 'stop_time'; |
||
83 | |||
84 | public function getFieldTypes() { |
||
131 | } |
||
132 |