source: vendor/google/apiclient-services/src/DisplayVideo/AlgorithmRulesComparisonValue.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: 3.9 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 AlgorithmRulesComparisonValue extends \Google\Model
21{
22 /**
23 * @var bool
24 */
25 public $boolValue;
26 protected $creativeDimensionValueType = Dimensions::class;
27 protected $creativeDimensionValueDataType = '';
28 protected $dayAndTimeValueType = DayAndTime::class;
29 protected $dayAndTimeValueDataType = '';
30 /**
31 * @var string
32 */
33 public $deviceTypeValue;
34 public $doubleValue;
35 /**
36 * @var string
37 */
38 public $environmentValue;
39 /**
40 * @var string
41 */
42 public $exchangeValue;
43 /**
44 * @var string
45 */
46 public $int64Value;
47 /**
48 * @var string
49 */
50 public $onScreenPositionValue;
51 /**
52 * @var string
53 */
54 public $stringValue;
55
56 /**
57 * @param bool
58 */
59 public function setBoolValue($boolValue)
60 {
61 $this->boolValue = $boolValue;
62 }
63 /**
64 * @return bool
65 */
66 public function getBoolValue()
67 {
68 return $this->boolValue;
69 }
70 /**
71 * @param Dimensions
72 */
73 public function setCreativeDimensionValue(Dimensions $creativeDimensionValue)
74 {
75 $this->creativeDimensionValue = $creativeDimensionValue;
76 }
77 /**
78 * @return Dimensions
79 */
80 public function getCreativeDimensionValue()
81 {
82 return $this->creativeDimensionValue;
83 }
84 /**
85 * @param DayAndTime
86 */
87 public function setDayAndTimeValue(DayAndTime $dayAndTimeValue)
88 {
89 $this->dayAndTimeValue = $dayAndTimeValue;
90 }
91 /**
92 * @return DayAndTime
93 */
94 public function getDayAndTimeValue()
95 {
96 return $this->dayAndTimeValue;
97 }
98 /**
99 * @param string
100 */
101 public function setDeviceTypeValue($deviceTypeValue)
102 {
103 $this->deviceTypeValue = $deviceTypeValue;
104 }
105 /**
106 * @return string
107 */
108 public function getDeviceTypeValue()
109 {
110 return $this->deviceTypeValue;
111 }
112 public function setDoubleValue($doubleValue)
113 {
114 $this->doubleValue = $doubleValue;
115 }
116 public function getDoubleValue()
117 {
118 return $this->doubleValue;
119 }
120 /**
121 * @param string
122 */
123 public function setEnvironmentValue($environmentValue)
124 {
125 $this->environmentValue = $environmentValue;
126 }
127 /**
128 * @return string
129 */
130 public function getEnvironmentValue()
131 {
132 return $this->environmentValue;
133 }
134 /**
135 * @param string
136 */
137 public function setExchangeValue($exchangeValue)
138 {
139 $this->exchangeValue = $exchangeValue;
140 }
141 /**
142 * @return string
143 */
144 public function getExchangeValue()
145 {
146 return $this->exchangeValue;
147 }
148 /**
149 * @param string
150 */
151 public function setInt64Value($int64Value)
152 {
153 $this->int64Value = $int64Value;
154 }
155 /**
156 * @return string
157 */
158 public function getInt64Value()
159 {
160 return $this->int64Value;
161 }
162 /**
163 * @param string
164 */
165 public function setOnScreenPositionValue($onScreenPositionValue)
166 {
167 $this->onScreenPositionValue = $onScreenPositionValue;
168 }
169 /**
170 * @return string
171 */
172 public function getOnScreenPositionValue()
173 {
174 return $this->onScreenPositionValue;
175 }
176 /**
177 * @param string
178 */
179 public function setStringValue($stringValue)
180 {
181 $this->stringValue = $stringValue;
182 }
183 /**
184 * @return string
185 */
186 public function getStringValue()
187 {
188 return $this->stringValue;
189 }
190}
191
192// Adding a class alias for backwards compatibility with the previous class name.
193class_alias(AlgorithmRulesComparisonValue::class, 'Google_Service_DisplayVideo_AlgorithmRulesComparisonValue');
Note: See TracBrowser for help on using the repository browser.