source: vendor/google/apiclient-services/src/Apigee/GoogleCloudApigeeV1ApiDoc.php@ f9c482b

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

Upload new project files

  • Property mode set to 100644
File size: 5.6 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\Apigee;
19
20class GoogleCloudApigeeV1ApiDoc extends \Google\Collection
21{
22 protected $collection_key = 'categoryIds';
23 /**
24 * @var bool
25 */
26 public $anonAllowed;
27 /**
28 * @var string
29 */
30 public $apiProductName;
31 /**
32 * @var string[]
33 */
34 public $categoryIds;
35 /**
36 * @var string
37 */
38 public $description;
39 /**
40 * @var string
41 */
42 public $edgeAPIProductName;
43 /**
44 * @var string
45 */
46 public $graphqlEndpointUrl;
47 /**
48 * @var string
49 */
50 public $graphqlSchema;
51 /**
52 * @var string
53 */
54 public $graphqlSchemaDisplayName;
55 /**
56 * @var string
57 */
58 public $id;
59 /**
60 * @var string
61 */
62 public $imageUrl;
63 /**
64 * @var string
65 */
66 public $modified;
67 /**
68 * @var bool
69 */
70 public $published;
71 /**
72 * @var bool
73 */
74 public $requireCallbackUrl;
75 /**
76 * @var string
77 */
78 public $siteId;
79 /**
80 * @var string
81 */
82 public $specId;
83 /**
84 * @var string
85 */
86 public $title;
87 /**
88 * @var bool
89 */
90 public $visibility;
91
92 /**
93 * @param bool
94 */
95 public function setAnonAllowed($anonAllowed)
96 {
97 $this->anonAllowed = $anonAllowed;
98 }
99 /**
100 * @return bool
101 */
102 public function getAnonAllowed()
103 {
104 return $this->anonAllowed;
105 }
106 /**
107 * @param string
108 */
109 public function setApiProductName($apiProductName)
110 {
111 $this->apiProductName = $apiProductName;
112 }
113 /**
114 * @return string
115 */
116 public function getApiProductName()
117 {
118 return $this->apiProductName;
119 }
120 /**
121 * @param string[]
122 */
123 public function setCategoryIds($categoryIds)
124 {
125 $this->categoryIds = $categoryIds;
126 }
127 /**
128 * @return string[]
129 */
130 public function getCategoryIds()
131 {
132 return $this->categoryIds;
133 }
134 /**
135 * @param string
136 */
137 public function setDescription($description)
138 {
139 $this->description = $description;
140 }
141 /**
142 * @return string
143 */
144 public function getDescription()
145 {
146 return $this->description;
147 }
148 /**
149 * @param string
150 */
151 public function setEdgeAPIProductName($edgeAPIProductName)
152 {
153 $this->edgeAPIProductName = $edgeAPIProductName;
154 }
155 /**
156 * @return string
157 */
158 public function getEdgeAPIProductName()
159 {
160 return $this->edgeAPIProductName;
161 }
162 /**
163 * @param string
164 */
165 public function setGraphqlEndpointUrl($graphqlEndpointUrl)
166 {
167 $this->graphqlEndpointUrl = $graphqlEndpointUrl;
168 }
169 /**
170 * @return string
171 */
172 public function getGraphqlEndpointUrl()
173 {
174 return $this->graphqlEndpointUrl;
175 }
176 /**
177 * @param string
178 */
179 public function setGraphqlSchema($graphqlSchema)
180 {
181 $this->graphqlSchema = $graphqlSchema;
182 }
183 /**
184 * @return string
185 */
186 public function getGraphqlSchema()
187 {
188 return $this->graphqlSchema;
189 }
190 /**
191 * @param string
192 */
193 public function setGraphqlSchemaDisplayName($graphqlSchemaDisplayName)
194 {
195 $this->graphqlSchemaDisplayName = $graphqlSchemaDisplayName;
196 }
197 /**
198 * @return string
199 */
200 public function getGraphqlSchemaDisplayName()
201 {
202 return $this->graphqlSchemaDisplayName;
203 }
204 /**
205 * @param string
206 */
207 public function setId($id)
208 {
209 $this->id = $id;
210 }
211 /**
212 * @return string
213 */
214 public function getId()
215 {
216 return $this->id;
217 }
218 /**
219 * @param string
220 */
221 public function setImageUrl($imageUrl)
222 {
223 $this->imageUrl = $imageUrl;
224 }
225 /**
226 * @return string
227 */
228 public function getImageUrl()
229 {
230 return $this->imageUrl;
231 }
232 /**
233 * @param string
234 */
235 public function setModified($modified)
236 {
237 $this->modified = $modified;
238 }
239 /**
240 * @return string
241 */
242 public function getModified()
243 {
244 return $this->modified;
245 }
246 /**
247 * @param bool
248 */
249 public function setPublished($published)
250 {
251 $this->published = $published;
252 }
253 /**
254 * @return bool
255 */
256 public function getPublished()
257 {
258 return $this->published;
259 }
260 /**
261 * @param bool
262 */
263 public function setRequireCallbackUrl($requireCallbackUrl)
264 {
265 $this->requireCallbackUrl = $requireCallbackUrl;
266 }
267 /**
268 * @return bool
269 */
270 public function getRequireCallbackUrl()
271 {
272 return $this->requireCallbackUrl;
273 }
274 /**
275 * @param string
276 */
277 public function setSiteId($siteId)
278 {
279 $this->siteId = $siteId;
280 }
281 /**
282 * @return string
283 */
284 public function getSiteId()
285 {
286 return $this->siteId;
287 }
288 /**
289 * @param string
290 */
291 public function setSpecId($specId)
292 {
293 $this->specId = $specId;
294 }
295 /**
296 * @return string
297 */
298 public function getSpecId()
299 {
300 return $this->specId;
301 }
302 /**
303 * @param string
304 */
305 public function setTitle($title)
306 {
307 $this->title = $title;
308 }
309 /**
310 * @return string
311 */
312 public function getTitle()
313 {
314 return $this->title;
315 }
316 /**
317 * @param bool
318 */
319 public function setVisibility($visibility)
320 {
321 $this->visibility = $visibility;
322 }
323 /**
324 * @return bool
325 */
326 public function getVisibility()
327 {
328 return $this->visibility;
329 }
330}
331
332// Adding a class alias for backwards compatibility with the previous class name.
333class_alias(GoogleCloudApigeeV1ApiDoc::class, 'Google_Service_Apigee_GoogleCloudApigeeV1ApiDoc');
Note: See TracBrowser for help on using the repository browser.