1 | <?php |
||
38 | class TargetingFields extends AbstractEnum { |
||
39 | |||
40 | const ADGROUP_ID = 'adgroup_id'; |
||
41 | const AGE_MAX = 'age_max'; |
||
42 | const AGE_MIN = 'age_min'; |
||
43 | const APP_INSTALL_STATE = 'app_install_state'; |
||
44 | const AUDIENCE_NETWORK_POSITIONS = 'audience_network_positions'; |
||
45 | const BEHAVIORS = 'behaviors'; |
||
46 | const CITIES = 'cities'; |
||
47 | const COLLEGE_YEARS = 'college_years'; |
||
48 | const CONNECTIONS = 'connections'; |
||
49 | const CONTEXTUAL_TARGETING_CATEGORIES = 'contextual_targeting_categories'; |
||
50 | const COUNTRIES = 'countries'; |
||
51 | const COUNTRY = 'country'; |
||
52 | const COUNTRY_GROUPS = 'country_groups'; |
||
53 | const CUSTOM_AUDIENCES = 'custom_audiences'; |
||
54 | const DEVICE_PLATFORMS = 'device_platforms'; |
||
55 | const DIRECT_INSTALL_DEVICES = 'direct_install_devices'; |
||
56 | const DYNAMIC_AUDIENCE_IDS = 'dynamic_audience_ids'; |
||
57 | const EDUCATION_MAJORS = 'education_majors'; |
||
58 | const EDUCATION_SCHOOLS = 'education_schools'; |
||
59 | const EDUCATION_STATUSES = 'education_statuses'; |
||
60 | const EFFECTIVE_AUDIENCE_NETWORK_POSITIONS = 'effective_audience_network_positions'; |
||
61 | const EFFECTIVE_DEVICE_PLATFORMS = 'effective_device_platforms'; |
||
62 | const EFFECTIVE_FACEBOOK_POSITIONS = 'effective_facebook_positions'; |
||
63 | const EFFECTIVE_INSTAGRAM_POSITIONS = 'effective_instagram_positions'; |
||
64 | const EFFECTIVE_MESSENGER_POSITIONS = 'effective_messenger_positions'; |
||
65 | const EFFECTIVE_PUBLISHER_PLATFORMS = 'effective_publisher_platforms'; |
||
66 | const ENGAGEMENT_SPECS = 'engagement_specs'; |
||
67 | const ETHNIC_AFFINITY = 'ethnic_affinity'; |
||
68 | const EXCLUDE_REACHED_SINCE = 'exclude_reached_since'; |
||
69 | const EXCLUDED_CONNECTIONS = 'excluded_connections'; |
||
70 | const EXCLUDED_CUSTOM_AUDIENCES = 'excluded_custom_audiences'; |
||
71 | const EXCLUDED_DYNAMIC_AUDIENCE_IDS = 'excluded_dynamic_audience_ids'; |
||
72 | const EXCLUDED_ENGAGEMENT_SPECS = 'excluded_engagement_specs'; |
||
73 | const EXCLUDED_GEO_LOCATIONS = 'excluded_geo_locations'; |
||
74 | const EXCLUDED_MOBILE_DEVICE_MODEL = 'excluded_mobile_device_model'; |
||
75 | const EXCLUDED_PRODUCT_AUDIENCE_SPECS = 'excluded_product_audience_specs'; |
||
76 | const EXCLUDED_PUBLISHER_CATEGORIES = 'excluded_publisher_categories'; |
||
77 | const EXCLUDED_PUBLISHER_LIST_IDS = 'excluded_publisher_list_ids'; |
||
78 | const EXCLUDED_USER_DEVICE = 'excluded_user_device'; |
||
79 | const EXCLUSIONS = 'exclusions'; |
||
80 | const FACEBOOK_POSITIONS = 'facebook_positions'; |
||
81 | const FAMILY_STATUSES = 'family_statuses'; |
||
82 | const FB_DEAL_ID = 'fb_deal_id'; |
||
83 | const FLEXIBLE_SPEC = 'flexible_spec'; |
||
84 | const FRIENDS_OF_CONNECTIONS = 'friends_of_connections'; |
||
85 | const GENDERS = 'genders'; |
||
86 | const GENERATION = 'generation'; |
||
87 | const GEO_LOCATIONS = 'geo_locations'; |
||
88 | const HOME_OWNERSHIP = 'home_ownership'; |
||
89 | const HOME_TYPE = 'home_type'; |
||
90 | const HOME_VALUE = 'home_value'; |
||
91 | const HOUSEHOLD_COMPOSITION = 'household_composition'; |
||
92 | const INCOME = 'income'; |
||
93 | const INDUSTRIES = 'industries'; |
||
94 | const INSTAGRAM_POSITIONS = 'instagram_positions'; |
||
95 | const INTERESTED_IN = 'interested_in'; |
||
96 | const INTERESTS = 'interests'; |
||
97 | const KEYWORDS = 'keywords'; |
||
98 | const LIFE_EVENTS = 'life_events'; |
||
99 | const LOCALES = 'locales'; |
||
100 | const MESSENGER_POSITIONS = 'messenger_positions'; |
||
101 | const MOMS = 'moms'; |
||
102 | const NET_WORTH = 'net_worth'; |
||
103 | const OFFICE_TYPE = 'office_type'; |
||
104 | const PLACE_PAGE_SET_IDS = 'place_page_set_ids'; |
||
105 | const POLITICAL_VIEWS = 'political_views'; |
||
106 | const POLITICS = 'politics'; |
||
107 | const PRODUCT_AUDIENCE_SPECS = 'product_audience_specs'; |
||
108 | const PUBLISHER_PLATFORMS = 'publisher_platforms'; |
||
109 | const PUBLISHER_VISIBILITY_CATEGORIES = 'publisher_visibility_categories'; |
||
110 | const RADIUS = 'radius'; |
||
111 | const REGIONS = 'regions'; |
||
112 | const RELATIONSHIP_STATUSES = 'relationship_statuses'; |
||
113 | const RTB_FLAG = 'rtb_flag'; |
||
114 | const SITE_CATEGORY = 'site_category'; |
||
115 | const TARGETING_OPTIMIZATION = 'targeting_optimization'; |
||
116 | const USER_ADCLUSTERS = 'user_adclusters'; |
||
117 | const USER_DEVICE = 'user_device'; |
||
118 | const USER_EVENT = 'user_event'; |
||
119 | const USER_OS = 'user_os'; |
||
120 | const WIRELESS_CARRIER = 'wireless_carrier'; |
||
121 | const WORK_EMPLOYERS = 'work_employers'; |
||
122 | const WORK_POSITIONS = 'work_positions'; |
||
123 | const ZIPS = 'zips'; |
||
124 | |||
125 | public function getFieldTypes() { |
||
213 | } |
||
214 |