source: vendor/google/apiclient-services/src/Integrations/GoogleCloudIntegrationsV1alphaIntegrationParameter.php@ e3d4e0a

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

Upload project files

  • Property mode set to 100644
File size: 4.3 KB
RevLine 
[e3d4e0a]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\Integrations;
19
20class GoogleCloudIntegrationsV1alphaIntegrationParameter extends \Google\Model
21{
22 /**
23 * @var bool
24 */
25 public $containsLargeData;
26 /**
27 * @var string
28 */
29 public $dataType;
30 protected $defaultValueType = GoogleCloudIntegrationsV1alphaValueType::class;
31 protected $defaultValueDataType = '';
32 /**
33 * @var string
34 */
35 public $description;
36 /**
37 * @var string
38 */
39 public $displayName;
40 /**
41 * @var string
42 */
43 public $inputOutputType;
44 /**
45 * @var bool
46 */
47 public $isTransient;
48 /**
49 * @var string
50 */
51 public $jsonSchema;
52 /**
53 * @var string
54 */
55 public $key;
56 /**
57 * @var bool
58 */
59 public $masked;
60 /**
61 * @var string
62 */
63 public $producer;
64 /**
65 * @var bool
66 */
67 public $searchable;
68
69 /**
70 * @param bool
71 */
72 public function setContainsLargeData($containsLargeData)
73 {
74 $this->containsLargeData = $containsLargeData;
75 }
76 /**
77 * @return bool
78 */
79 public function getContainsLargeData()
80 {
81 return $this->containsLargeData;
82 }
83 /**
84 * @param string
85 */
86 public function setDataType($dataType)
87 {
88 $this->dataType = $dataType;
89 }
90 /**
91 * @return string
92 */
93 public function getDataType()
94 {
95 return $this->dataType;
96 }
97 /**
98 * @param GoogleCloudIntegrationsV1alphaValueType
99 */
100 public function setDefaultValue(GoogleCloudIntegrationsV1alphaValueType $defaultValue)
101 {
102 $this->defaultValue = $defaultValue;
103 }
104 /**
105 * @return GoogleCloudIntegrationsV1alphaValueType
106 */
107 public function getDefaultValue()
108 {
109 return $this->defaultValue;
110 }
111 /**
112 * @param string
113 */
114 public function setDescription($description)
115 {
116 $this->description = $description;
117 }
118 /**
119 * @return string
120 */
121 public function getDescription()
122 {
123 return $this->description;
124 }
125 /**
126 * @param string
127 */
128 public function setDisplayName($displayName)
129 {
130 $this->displayName = $displayName;
131 }
132 /**
133 * @return string
134 */
135 public function getDisplayName()
136 {
137 return $this->displayName;
138 }
139 /**
140 * @param string
141 */
142 public function setInputOutputType($inputOutputType)
143 {
144 $this->inputOutputType = $inputOutputType;
145 }
146 /**
147 * @return string
148 */
149 public function getInputOutputType()
150 {
151 return $this->inputOutputType;
152 }
153 /**
154 * @param bool
155 */
156 public function setIsTransient($isTransient)
157 {
158 $this->isTransient = $isTransient;
159 }
160 /**
161 * @return bool
162 */
163 public function getIsTransient()
164 {
165 return $this->isTransient;
166 }
167 /**
168 * @param string
169 */
170 public function setJsonSchema($jsonSchema)
171 {
172 $this->jsonSchema = $jsonSchema;
173 }
174 /**
175 * @return string
176 */
177 public function getJsonSchema()
178 {
179 return $this->jsonSchema;
180 }
181 /**
182 * @param string
183 */
184 public function setKey($key)
185 {
186 $this->key = $key;
187 }
188 /**
189 * @return string
190 */
191 public function getKey()
192 {
193 return $this->key;
194 }
195 /**
196 * @param bool
197 */
198 public function setMasked($masked)
199 {
200 $this->masked = $masked;
201 }
202 /**
203 * @return bool
204 */
205 public function getMasked()
206 {
207 return $this->masked;
208 }
209 /**
210 * @param string
211 */
212 public function setProducer($producer)
213 {
214 $this->producer = $producer;
215 }
216 /**
217 * @return string
218 */
219 public function getProducer()
220 {
221 return $this->producer;
222 }
223 /**
224 * @param bool
225 */
226 public function setSearchable($searchable)
227 {
228 $this->searchable = $searchable;
229 }
230 /**
231 * @return bool
232 */
233 public function getSearchable()
234 {
235 return $this->searchable;
236 }
237}
238
239// Adding a class alias for backwards compatibility with the previous class name.
240class_alias(GoogleCloudIntegrationsV1alphaIntegrationParameter::class, 'Google_Service_Integrations_GoogleCloudIntegrationsV1alphaIntegrationParameter');
Note: See TracBrowser for help on using the repository browser.