source: vendor/google/apiclient-services/src/Datapipelines/GoogleCloudDatapipelinesV1AtomicValue.php@ e3d4e0a

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

Upload project files

  • Property mode set to 100644
File size: 4.0 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\Datapipelines;
19
20class GoogleCloudDatapipelinesV1AtomicValue extends \Google\Model
21{
22 /**
23 * @var bool
24 */
25 public $booleanValue;
26 /**
27 * @var int
28 */
29 public $byteValue;
30 /**
31 * @var string
32 */
33 public $bytesValue;
34 protected $datetimeValueType = GoogleTypeDateTime::class;
35 protected $datetimeValueDataType = '';
36 protected $decimalValueType = GoogleTypeDecimal::class;
37 protected $decimalValueDataType = '';
38 public $doubleValue;
39 /**
40 * @var float
41 */
42 public $floatValue;
43 /**
44 * @var int
45 */
46 public $int16Value;
47 /**
48 * @var int
49 */
50 public $int32Value;
51 /**
52 * @var string
53 */
54 public $int64Value;
55 /**
56 * @var string
57 */
58 public $stringValue;
59
60 /**
61 * @param bool
62 */
63 public function setBooleanValue($booleanValue)
64 {
65 $this->booleanValue = $booleanValue;
66 }
67 /**
68 * @return bool
69 */
70 public function getBooleanValue()
71 {
72 return $this->booleanValue;
73 }
74 /**
75 * @param int
76 */
77 public function setByteValue($byteValue)
78 {
79 $this->byteValue = $byteValue;
80 }
81 /**
82 * @return int
83 */
84 public function getByteValue()
85 {
86 return $this->byteValue;
87 }
88 /**
89 * @param string
90 */
91 public function setBytesValue($bytesValue)
92 {
93 $this->bytesValue = $bytesValue;
94 }
95 /**
96 * @return string
97 */
98 public function getBytesValue()
99 {
100 return $this->bytesValue;
101 }
102 /**
103 * @param GoogleTypeDateTime
104 */
105 public function setDatetimeValue(GoogleTypeDateTime $datetimeValue)
106 {
107 $this->datetimeValue = $datetimeValue;
108 }
109 /**
110 * @return GoogleTypeDateTime
111 */
112 public function getDatetimeValue()
113 {
114 return $this->datetimeValue;
115 }
116 /**
117 * @param GoogleTypeDecimal
118 */
119 public function setDecimalValue(GoogleTypeDecimal $decimalValue)
120 {
121 $this->decimalValue = $decimalValue;
122 }
123 /**
124 * @return GoogleTypeDecimal
125 */
126 public function getDecimalValue()
127 {
128 return $this->decimalValue;
129 }
130 public function setDoubleValue($doubleValue)
131 {
132 $this->doubleValue = $doubleValue;
133 }
134 public function getDoubleValue()
135 {
136 return $this->doubleValue;
137 }
138 /**
139 * @param float
140 */
141 public function setFloatValue($floatValue)
142 {
143 $this->floatValue = $floatValue;
144 }
145 /**
146 * @return float
147 */
148 public function getFloatValue()
149 {
150 return $this->floatValue;
151 }
152 /**
153 * @param int
154 */
155 public function setInt16Value($int16Value)
156 {
157 $this->int16Value = $int16Value;
158 }
159 /**
160 * @return int
161 */
162 public function getInt16Value()
163 {
164 return $this->int16Value;
165 }
166 /**
167 * @param int
168 */
169 public function setInt32Value($int32Value)
170 {
171 $this->int32Value = $int32Value;
172 }
173 /**
174 * @return int
175 */
176 public function getInt32Value()
177 {
178 return $this->int32Value;
179 }
180 /**
181 * @param string
182 */
183 public function setInt64Value($int64Value)
184 {
185 $this->int64Value = $int64Value;
186 }
187 /**
188 * @return string
189 */
190 public function getInt64Value()
191 {
192 return $this->int64Value;
193 }
194 /**
195 * @param string
196 */
197 public function setStringValue($stringValue)
198 {
199 $this->stringValue = $stringValue;
200 }
201 /**
202 * @return string
203 */
204 public function getStringValue()
205 {
206 return $this->stringValue;
207 }
208}
209
210// Adding a class alias for backwards compatibility with the previous class name.
211class_alias(GoogleCloudDatapipelinesV1AtomicValue::class, 'Google_Service_Datapipelines_GoogleCloudDatapipelinesV1AtomicValue');
Note: See TracBrowser for help on using the repository browser.