source: vendor/google/apiclient-services/src/DisplayVideo/YoutubeAndPartnersSettings.php

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

Upload project files

  • Property mode set to 100644
File size: 4.8 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\DisplayVideo;
19
20class YoutubeAndPartnersSettings extends \Google\Collection
21{
22 protected $collection_key = 'relatedVideoIds';
23 /**
24 * @var string
25 */
26 public $contentCategory;
27 /**
28 * @var string
29 */
30 public $effectiveContentCategory;
31 protected $inventorySourceSettingsType = YoutubeAndPartnersInventorySourceConfig::class;
32 protected $inventorySourceSettingsDataType = '';
33 /**
34 * @var string
35 */
36 public $leadFormId;
37 /**
38 * @var string
39 */
40 public $linkedMerchantId;
41 /**
42 * @var string[]
43 */
44 public $relatedVideoIds;
45 protected $targetFrequencyType = TargetFrequency::class;
46 protected $targetFrequencyDataType = '';
47 protected $thirdPartyMeasurementConfigsType = ThirdPartyMeasurementConfigs::class;
48 protected $thirdPartyMeasurementConfigsDataType = '';
49 protected $videoAdSequenceSettingsType = VideoAdSequenceSettings::class;
50 protected $videoAdSequenceSettingsDataType = '';
51 protected $viewFrequencyCapType = FrequencyCap::class;
52 protected $viewFrequencyCapDataType = '';
53
54 /**
55 * @param string
56 */
57 public function setContentCategory($contentCategory)
58 {
59 $this->contentCategory = $contentCategory;
60 }
61 /**
62 * @return string
63 */
64 public function getContentCategory()
65 {
66 return $this->contentCategory;
67 }
68 /**
69 * @param string
70 */
71 public function setEffectiveContentCategory($effectiveContentCategory)
72 {
73 $this->effectiveContentCategory = $effectiveContentCategory;
74 }
75 /**
76 * @return string
77 */
78 public function getEffectiveContentCategory()
79 {
80 return $this->effectiveContentCategory;
81 }
82 /**
83 * @param YoutubeAndPartnersInventorySourceConfig
84 */
85 public function setInventorySourceSettings(YoutubeAndPartnersInventorySourceConfig $inventorySourceSettings)
86 {
87 $this->inventorySourceSettings = $inventorySourceSettings;
88 }
89 /**
90 * @return YoutubeAndPartnersInventorySourceConfig
91 */
92 public function getInventorySourceSettings()
93 {
94 return $this->inventorySourceSettings;
95 }
96 /**
97 * @param string
98 */
99 public function setLeadFormId($leadFormId)
100 {
101 $this->leadFormId = $leadFormId;
102 }
103 /**
104 * @return string
105 */
106 public function getLeadFormId()
107 {
108 return $this->leadFormId;
109 }
110 /**
111 * @param string
112 */
113 public function setLinkedMerchantId($linkedMerchantId)
114 {
115 $this->linkedMerchantId = $linkedMerchantId;
116 }
117 /**
118 * @return string
119 */
120 public function getLinkedMerchantId()
121 {
122 return $this->linkedMerchantId;
123 }
124 /**
125 * @param string[]
126 */
127 public function setRelatedVideoIds($relatedVideoIds)
128 {
129 $this->relatedVideoIds = $relatedVideoIds;
130 }
131 /**
132 * @return string[]
133 */
134 public function getRelatedVideoIds()
135 {
136 return $this->relatedVideoIds;
137 }
138 /**
139 * @param TargetFrequency
140 */
141 public function setTargetFrequency(TargetFrequency $targetFrequency)
142 {
143 $this->targetFrequency = $targetFrequency;
144 }
145 /**
146 * @return TargetFrequency
147 */
148 public function getTargetFrequency()
149 {
150 return $this->targetFrequency;
151 }
152 /**
153 * @param ThirdPartyMeasurementConfigs
154 */
155 public function setThirdPartyMeasurementConfigs(ThirdPartyMeasurementConfigs $thirdPartyMeasurementConfigs)
156 {
157 $this->thirdPartyMeasurementConfigs = $thirdPartyMeasurementConfigs;
158 }
159 /**
160 * @return ThirdPartyMeasurementConfigs
161 */
162 public function getThirdPartyMeasurementConfigs()
163 {
164 return $this->thirdPartyMeasurementConfigs;
165 }
166 /**
167 * @param VideoAdSequenceSettings
168 */
169 public function setVideoAdSequenceSettings(VideoAdSequenceSettings $videoAdSequenceSettings)
170 {
171 $this->videoAdSequenceSettings = $videoAdSequenceSettings;
172 }
173 /**
174 * @return VideoAdSequenceSettings
175 */
176 public function getVideoAdSequenceSettings()
177 {
178 return $this->videoAdSequenceSettings;
179 }
180 /**
181 * @param FrequencyCap
182 */
183 public function setViewFrequencyCap(FrequencyCap $viewFrequencyCap)
184 {
185 $this->viewFrequencyCap = $viewFrequencyCap;
186 }
187 /**
188 * @return FrequencyCap
189 */
190 public function getViewFrequencyCap()
191 {
192 return $this->viewFrequencyCap;
193 }
194}
195
196// Adding a class alias for backwards compatibility with the previous class name.
197class_alias(YoutubeAndPartnersSettings::class, 'Google_Service_DisplayVideo_YoutubeAndPartnersSettings');
Note: See TracBrowser for help on using the repository browser.