source: vendor/google/apiclient-services/src/Aiplatform/GoogleCloudAiplatformV1FeatureValue.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.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\Aiplatform;
19
20class GoogleCloudAiplatformV1FeatureValue extends \Google\Model
21{
22 protected $boolArrayValueType = GoogleCloudAiplatformV1BoolArray::class;
23 protected $boolArrayValueDataType = '';
24 /**
25 * @var bool
26 */
27 public $boolValue;
28 /**
29 * @var string
30 */
31 public $bytesValue;
32 protected $doubleArrayValueType = GoogleCloudAiplatformV1DoubleArray::class;
33 protected $doubleArrayValueDataType = '';
34 public $doubleValue;
35 protected $int64ArrayValueType = GoogleCloudAiplatformV1Int64Array::class;
36 protected $int64ArrayValueDataType = '';
37 /**
38 * @var string
39 */
40 public $int64Value;
41 protected $metadataType = GoogleCloudAiplatformV1FeatureValueMetadata::class;
42 protected $metadataDataType = '';
43 protected $stringArrayValueType = GoogleCloudAiplatformV1StringArray::class;
44 protected $stringArrayValueDataType = '';
45 /**
46 * @var string
47 */
48 public $stringValue;
49 protected $structValueType = GoogleCloudAiplatformV1StructValue::class;
50 protected $structValueDataType = '';
51
52 /**
53 * @param GoogleCloudAiplatformV1BoolArray
54 */
55 public function setBoolArrayValue(GoogleCloudAiplatformV1BoolArray $boolArrayValue)
56 {
57 $this->boolArrayValue = $boolArrayValue;
58 }
59 /**
60 * @return GoogleCloudAiplatformV1BoolArray
61 */
62 public function getBoolArrayValue()
63 {
64 return $this->boolArrayValue;
65 }
66 /**
67 * @param bool
68 */
69 public function setBoolValue($boolValue)
70 {
71 $this->boolValue = $boolValue;
72 }
73 /**
74 * @return bool
75 */
76 public function getBoolValue()
77 {
78 return $this->boolValue;
79 }
80 /**
81 * @param string
82 */
83 public function setBytesValue($bytesValue)
84 {
85 $this->bytesValue = $bytesValue;
86 }
87 /**
88 * @return string
89 */
90 public function getBytesValue()
91 {
92 return $this->bytesValue;
93 }
94 /**
95 * @param GoogleCloudAiplatformV1DoubleArray
96 */
97 public function setDoubleArrayValue(GoogleCloudAiplatformV1DoubleArray $doubleArrayValue)
98 {
99 $this->doubleArrayValue = $doubleArrayValue;
100 }
101 /**
102 * @return GoogleCloudAiplatformV1DoubleArray
103 */
104 public function getDoubleArrayValue()
105 {
106 return $this->doubleArrayValue;
107 }
108 public function setDoubleValue($doubleValue)
109 {
110 $this->doubleValue = $doubleValue;
111 }
112 public function getDoubleValue()
113 {
114 return $this->doubleValue;
115 }
116 /**
117 * @param GoogleCloudAiplatformV1Int64Array
118 */
119 public function setInt64ArrayValue(GoogleCloudAiplatformV1Int64Array $int64ArrayValue)
120 {
121 $this->int64ArrayValue = $int64ArrayValue;
122 }
123 /**
124 * @return GoogleCloudAiplatformV1Int64Array
125 */
126 public function getInt64ArrayValue()
127 {
128 return $this->int64ArrayValue;
129 }
130 /**
131 * @param string
132 */
133 public function setInt64Value($int64Value)
134 {
135 $this->int64Value = $int64Value;
136 }
137 /**
138 * @return string
139 */
140 public function getInt64Value()
141 {
142 return $this->int64Value;
143 }
144 /**
145 * @param GoogleCloudAiplatformV1FeatureValueMetadata
146 */
147 public function setMetadata(GoogleCloudAiplatformV1FeatureValueMetadata $metadata)
148 {
149 $this->metadata = $metadata;
150 }
151 /**
152 * @return GoogleCloudAiplatformV1FeatureValueMetadata
153 */
154 public function getMetadata()
155 {
156 return $this->metadata;
157 }
158 /**
159 * @param GoogleCloudAiplatformV1StringArray
160 */
161 public function setStringArrayValue(GoogleCloudAiplatformV1StringArray $stringArrayValue)
162 {
163 $this->stringArrayValue = $stringArrayValue;
164 }
165 /**
166 * @return GoogleCloudAiplatformV1StringArray
167 */
168 public function getStringArrayValue()
169 {
170 return $this->stringArrayValue;
171 }
172 /**
173 * @param string
174 */
175 public function setStringValue($stringValue)
176 {
177 $this->stringValue = $stringValue;
178 }
179 /**
180 * @return string
181 */
182 public function getStringValue()
183 {
184 return $this->stringValue;
185 }
186 /**
187 * @param GoogleCloudAiplatformV1StructValue
188 */
189 public function setStructValue(GoogleCloudAiplatformV1StructValue $structValue)
190 {
191 $this->structValue = $structValue;
192 }
193 /**
194 * @return GoogleCloudAiplatformV1StructValue
195 */
196 public function getStructValue()
197 {
198 return $this->structValue;
199 }
200}
201
202// Adding a class alias for backwards compatibility with the previous class name.
203class_alias(GoogleCloudAiplatformV1FeatureValue::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1FeatureValue');
Note: See TracBrowser for help on using the repository browser.