source: vendor/google/apiclient-services/src/Contentwarehouse/GoogleCloudContentwarehouseV1Property.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\Contentwarehouse;
19
20class GoogleCloudContentwarehouseV1Property extends \Google\Model
21{
22 protected $dateTimeValuesType = GoogleCloudContentwarehouseV1DateTimeArray::class;
23 protected $dateTimeValuesDataType = '';
24 protected $enumValuesType = GoogleCloudContentwarehouseV1EnumArray::class;
25 protected $enumValuesDataType = '';
26 protected $floatValuesType = GoogleCloudContentwarehouseV1FloatArray::class;
27 protected $floatValuesDataType = '';
28 protected $integerValuesType = GoogleCloudContentwarehouseV1IntegerArray::class;
29 protected $integerValuesDataType = '';
30 protected $mapPropertyType = GoogleCloudContentwarehouseV1MapProperty::class;
31 protected $mapPropertyDataType = '';
32 /**
33 * @var string
34 */
35 public $name;
36 protected $propertyValuesType = GoogleCloudContentwarehouseV1PropertyArray::class;
37 protected $propertyValuesDataType = '';
38 protected $textValuesType = GoogleCloudContentwarehouseV1TextArray::class;
39 protected $textValuesDataType = '';
40 protected $timestampValuesType = GoogleCloudContentwarehouseV1TimestampArray::class;
41 protected $timestampValuesDataType = '';
42
43 /**
44 * @param GoogleCloudContentwarehouseV1DateTimeArray
45 */
46 public function setDateTimeValues(GoogleCloudContentwarehouseV1DateTimeArray $dateTimeValues)
47 {
48 $this->dateTimeValues = $dateTimeValues;
49 }
50 /**
51 * @return GoogleCloudContentwarehouseV1DateTimeArray
52 */
53 public function getDateTimeValues()
54 {
55 return $this->dateTimeValues;
56 }
57 /**
58 * @param GoogleCloudContentwarehouseV1EnumArray
59 */
60 public function setEnumValues(GoogleCloudContentwarehouseV1EnumArray $enumValues)
61 {
62 $this->enumValues = $enumValues;
63 }
64 /**
65 * @return GoogleCloudContentwarehouseV1EnumArray
66 */
67 public function getEnumValues()
68 {
69 return $this->enumValues;
70 }
71 /**
72 * @param GoogleCloudContentwarehouseV1FloatArray
73 */
74 public function setFloatValues(GoogleCloudContentwarehouseV1FloatArray $floatValues)
75 {
76 $this->floatValues = $floatValues;
77 }
78 /**
79 * @return GoogleCloudContentwarehouseV1FloatArray
80 */
81 public function getFloatValues()
82 {
83 return $this->floatValues;
84 }
85 /**
86 * @param GoogleCloudContentwarehouseV1IntegerArray
87 */
88 public function setIntegerValues(GoogleCloudContentwarehouseV1IntegerArray $integerValues)
89 {
90 $this->integerValues = $integerValues;
91 }
92 /**
93 * @return GoogleCloudContentwarehouseV1IntegerArray
94 */
95 public function getIntegerValues()
96 {
97 return $this->integerValues;
98 }
99 /**
100 * @param GoogleCloudContentwarehouseV1MapProperty
101 */
102 public function setMapProperty(GoogleCloudContentwarehouseV1MapProperty $mapProperty)
103 {
104 $this->mapProperty = $mapProperty;
105 }
106 /**
107 * @return GoogleCloudContentwarehouseV1MapProperty
108 */
109 public function getMapProperty()
110 {
111 return $this->mapProperty;
112 }
113 /**
114 * @param string
115 */
116 public function setName($name)
117 {
118 $this->name = $name;
119 }
120 /**
121 * @return string
122 */
123 public function getName()
124 {
125 return $this->name;
126 }
127 /**
128 * @param GoogleCloudContentwarehouseV1PropertyArray
129 */
130 public function setPropertyValues(GoogleCloudContentwarehouseV1PropertyArray $propertyValues)
131 {
132 $this->propertyValues = $propertyValues;
133 }
134 /**
135 * @return GoogleCloudContentwarehouseV1PropertyArray
136 */
137 public function getPropertyValues()
138 {
139 return $this->propertyValues;
140 }
141 /**
142 * @param GoogleCloudContentwarehouseV1TextArray
143 */
144 public function setTextValues(GoogleCloudContentwarehouseV1TextArray $textValues)
145 {
146 $this->textValues = $textValues;
147 }
148 /**
149 * @return GoogleCloudContentwarehouseV1TextArray
150 */
151 public function getTextValues()
152 {
153 return $this->textValues;
154 }
155 /**
156 * @param GoogleCloudContentwarehouseV1TimestampArray
157 */
158 public function setTimestampValues(GoogleCloudContentwarehouseV1TimestampArray $timestampValues)
159 {
160 $this->timestampValues = $timestampValues;
161 }
162 /**
163 * @return GoogleCloudContentwarehouseV1TimestampArray
164 */
165 public function getTimestampValues()
166 {
167 return $this->timestampValues;
168 }
169}
170
171// Adding a class alias for backwards compatibility with the previous class name.
172class_alias(GoogleCloudContentwarehouseV1Property::class, 'Google_Service_Contentwarehouse_GoogleCloudContentwarehouseV1Property');
Note: See TracBrowser for help on using the repository browser.