source: vendor/google/apiclient-services/src/AuthorizedBuyersMarketplace/MarketplaceTargeting.php

Last change on this file was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 8 weeks ago

Upload project files

  • Property mode set to 100644
File size: 5.1 KB
Line 
1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\AuthorizedBuyersMarketplace;
19
20class MarketplaceTargeting extends \Google\Collection
21{
22 protected $collection_key = 'excludedSensitiveCategoryIds';
23 protected $daypartTargetingType = DayPartTargeting::class;
24 protected $daypartTargetingDataType = '';
25 /**
26 * @var string[]
27 */
28 public $excludedSensitiveCategoryIds;
29 protected $geoTargetingType = CriteriaTargeting::class;
30 protected $geoTargetingDataType = '';
31 protected $inventorySizeTargetingType = InventorySizeTargeting::class;
32 protected $inventorySizeTargetingDataType = '';
33 protected $inventoryTypeTargetingType = InventoryTypeTargeting::class;
34 protected $inventoryTypeTargetingDataType = '';
35 protected $placementTargetingType = PlacementTargeting::class;
36 protected $placementTargetingDataType = '';
37 protected $technologyTargetingType = TechnologyTargeting::class;
38 protected $technologyTargetingDataType = '';
39 protected $userListTargetingType = CriteriaTargeting::class;
40 protected $userListTargetingDataType = '';
41 protected $verticalTargetingType = CriteriaTargeting::class;
42 protected $verticalTargetingDataType = '';
43 protected $videoTargetingType = VideoTargeting::class;
44 protected $videoTargetingDataType = '';
45
46 /**
47 * @param DayPartTargeting
48 */
49 public function setDaypartTargeting(DayPartTargeting $daypartTargeting)
50 {
51 $this->daypartTargeting = $daypartTargeting;
52 }
53 /**
54 * @return DayPartTargeting
55 */
56 public function getDaypartTargeting()
57 {
58 return $this->daypartTargeting;
59 }
60 /**
61 * @param string[]
62 */
63 public function setExcludedSensitiveCategoryIds($excludedSensitiveCategoryIds)
64 {
65 $this->excludedSensitiveCategoryIds = $excludedSensitiveCategoryIds;
66 }
67 /**
68 * @return string[]
69 */
70 public function getExcludedSensitiveCategoryIds()
71 {
72 return $this->excludedSensitiveCategoryIds;
73 }
74 /**
75 * @param CriteriaTargeting
76 */
77 public function setGeoTargeting(CriteriaTargeting $geoTargeting)
78 {
79 $this->geoTargeting = $geoTargeting;
80 }
81 /**
82 * @return CriteriaTargeting
83 */
84 public function getGeoTargeting()
85 {
86 return $this->geoTargeting;
87 }
88 /**
89 * @param InventorySizeTargeting
90 */
91 public function setInventorySizeTargeting(InventorySizeTargeting $inventorySizeTargeting)
92 {
93 $this->inventorySizeTargeting = $inventorySizeTargeting;
94 }
95 /**
96 * @return InventorySizeTargeting
97 */
98 public function getInventorySizeTargeting()
99 {
100 return $this->inventorySizeTargeting;
101 }
102 /**
103 * @param InventoryTypeTargeting
104 */
105 public function setInventoryTypeTargeting(InventoryTypeTargeting $inventoryTypeTargeting)
106 {
107 $this->inventoryTypeTargeting = $inventoryTypeTargeting;
108 }
109 /**
110 * @return InventoryTypeTargeting
111 */
112 public function getInventoryTypeTargeting()
113 {
114 return $this->inventoryTypeTargeting;
115 }
116 /**
117 * @param PlacementTargeting
118 */
119 public function setPlacementTargeting(PlacementTargeting $placementTargeting)
120 {
121 $this->placementTargeting = $placementTargeting;
122 }
123 /**
124 * @return PlacementTargeting
125 */
126 public function getPlacementTargeting()
127 {
128 return $this->placementTargeting;
129 }
130 /**
131 * @param TechnologyTargeting
132 */
133 public function setTechnologyTargeting(TechnologyTargeting $technologyTargeting)
134 {
135 $this->technologyTargeting = $technologyTargeting;
136 }
137 /**
138 * @return TechnologyTargeting
139 */
140 public function getTechnologyTargeting()
141 {
142 return $this->technologyTargeting;
143 }
144 /**
145 * @param CriteriaTargeting
146 */
147 public function setUserListTargeting(CriteriaTargeting $userListTargeting)
148 {
149 $this->userListTargeting = $userListTargeting;
150 }
151 /**
152 * @return CriteriaTargeting
153 */
154 public function getUserListTargeting()
155 {
156 return $this->userListTargeting;
157 }
158 /**
159 * @param CriteriaTargeting
160 */
161 public function setVerticalTargeting(CriteriaTargeting $verticalTargeting)
162 {
163 $this->verticalTargeting = $verticalTargeting;
164 }
165 /**
166 * @return CriteriaTargeting
167 */
168 public function getVerticalTargeting()
169 {
170 return $this->verticalTargeting;
171 }
172 /**
173 * @param VideoTargeting
174 */
175 public function setVideoTargeting(VideoTargeting $videoTargeting)
176 {
177 $this->videoTargeting = $videoTargeting;
178 }
179 /**
180 * @return VideoTargeting
181 */
182 public function getVideoTargeting()
183 {
184 return $this->videoTargeting;
185 }
186}
187
188// Adding a class alias for backwards compatibility with the previous class name.
189class_alias(MarketplaceTargeting::class, 'Google_Service_AuthorizedBuyersMarketplace_MarketplaceTargeting');
Note: See TracBrowser for help on using the repository browser.