source: vendor/google/apiclient-services/src/Datapipelines/GoogleCloudDatapipelinesV1FieldValue.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\Datapipelines;
19
20class GoogleCloudDatapipelinesV1FieldValue extends \Google\Model
21{
22 protected $arrayValueType = GoogleCloudDatapipelinesV1ArrayValue::class;
23 protected $arrayValueDataType = '';
24 protected $atomicValueType = GoogleCloudDatapipelinesV1AtomicValue::class;
25 protected $atomicValueDataType = '';
26 protected $enumValueType = GoogleCloudDatapipelinesV1EnumerationValue::class;
27 protected $enumValueDataType = '';
28 protected $fixedBytesValueType = GoogleCloudDatapipelinesV1FixedBytesValue::class;
29 protected $fixedBytesValueDataType = '';
30 protected $iterableValueType = GoogleCloudDatapipelinesV1IterableValue::class;
31 protected $iterableValueDataType = '';
32 protected $mapValueType = GoogleCloudDatapipelinesV1MapValue::class;
33 protected $mapValueDataType = '';
34 protected $rowValueType = GoogleCloudDatapipelinesV1Row::class;
35 protected $rowValueDataType = '';
36
37 /**
38 * @param GoogleCloudDatapipelinesV1ArrayValue
39 */
40 public function setArrayValue(GoogleCloudDatapipelinesV1ArrayValue $arrayValue)
41 {
42 $this->arrayValue = $arrayValue;
43 }
44 /**
45 * @return GoogleCloudDatapipelinesV1ArrayValue
46 */
47 public function getArrayValue()
48 {
49 return $this->arrayValue;
50 }
51 /**
52 * @param GoogleCloudDatapipelinesV1AtomicValue
53 */
54 public function setAtomicValue(GoogleCloudDatapipelinesV1AtomicValue $atomicValue)
55 {
56 $this->atomicValue = $atomicValue;
57 }
58 /**
59 * @return GoogleCloudDatapipelinesV1AtomicValue
60 */
61 public function getAtomicValue()
62 {
63 return $this->atomicValue;
64 }
65 /**
66 * @param GoogleCloudDatapipelinesV1EnumerationValue
67 */
68 public function setEnumValue(GoogleCloudDatapipelinesV1EnumerationValue $enumValue)
69 {
70 $this->enumValue = $enumValue;
71 }
72 /**
73 * @return GoogleCloudDatapipelinesV1EnumerationValue
74 */
75 public function getEnumValue()
76 {
77 return $this->enumValue;
78 }
79 /**
80 * @param GoogleCloudDatapipelinesV1FixedBytesValue
81 */
82 public function setFixedBytesValue(GoogleCloudDatapipelinesV1FixedBytesValue $fixedBytesValue)
83 {
84 $this->fixedBytesValue = $fixedBytesValue;
85 }
86 /**
87 * @return GoogleCloudDatapipelinesV1FixedBytesValue
88 */
89 public function getFixedBytesValue()
90 {
91 return $this->fixedBytesValue;
92 }
93 /**
94 * @param GoogleCloudDatapipelinesV1IterableValue
95 */
96 public function setIterableValue(GoogleCloudDatapipelinesV1IterableValue $iterableValue)
97 {
98 $this->iterableValue = $iterableValue;
99 }
100 /**
101 * @return GoogleCloudDatapipelinesV1IterableValue
102 */
103 public function getIterableValue()
104 {
105 return $this->iterableValue;
106 }
107 /**
108 * @param GoogleCloudDatapipelinesV1MapValue
109 */
110 public function setMapValue(GoogleCloudDatapipelinesV1MapValue $mapValue)
111 {
112 $this->mapValue = $mapValue;
113 }
114 /**
115 * @return GoogleCloudDatapipelinesV1MapValue
116 */
117 public function getMapValue()
118 {
119 return $this->mapValue;
120 }
121 /**
122 * @param GoogleCloudDatapipelinesV1Row
123 */
124 public function setRowValue(GoogleCloudDatapipelinesV1Row $rowValue)
125 {
126 $this->rowValue = $rowValue;
127 }
128 /**
129 * @return GoogleCloudDatapipelinesV1Row
130 */
131 public function getRowValue()
132 {
133 return $this->rowValue;
134 }
135}
136
137// Adding a class alias for backwards compatibility with the previous class name.
138class_alias(GoogleCloudDatapipelinesV1FieldValue::class, 'Google_Service_Datapipelines_GoogleCloudDatapipelinesV1FieldValue');
Note: See TracBrowser for help on using the repository browser.