source: vendor/google/apiclient-services/src/CloudSearch/EnterpriseTopazSidekickCommonDocument.php

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

Upload project files

  • Property mode set to 100644
File size: 5.2 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\CloudSearch;
19
20class EnterpriseTopazSidekickCommonDocument extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $accessType;
26 protected $debugInfoType = EnterpriseTopazSidekickCommonDebugInfo::class;
27 protected $debugInfoDataType = '';
28 /**
29 * @var string
30 */
31 public $documentId;
32 protected $driveDocumentMetadataType = EnterpriseTopazSidekickCommonDocumentDriveDocumentMetadata::class;
33 protected $driveDocumentMetadataDataType = '';
34 /**
35 * @var string
36 */
37 public $genericUrl;
38 protected $justificationType = EnterpriseTopazSidekickCommonDocumentJustification::class;
39 protected $justificationDataType = '';
40 /**
41 * @var string
42 */
43 public $mimeType;
44 /**
45 * @var string
46 */
47 public $provenance;
48 /**
49 * @var string
50 */
51 public $reason;
52 /**
53 * @var string
54 */
55 public $snippet;
56 /**
57 * @var string
58 */
59 public $thumbnailUrl;
60 /**
61 * @var string
62 */
63 public $title;
64 /**
65 * @var string
66 */
67 public $type;
68 /**
69 * @var string
70 */
71 public $url;
72
73 /**
74 * @param string
75 */
76 public function setAccessType($accessType)
77 {
78 $this->accessType = $accessType;
79 }
80 /**
81 * @return string
82 */
83 public function getAccessType()
84 {
85 return $this->accessType;
86 }
87 /**
88 * @param EnterpriseTopazSidekickCommonDebugInfo
89 */
90 public function setDebugInfo(EnterpriseTopazSidekickCommonDebugInfo $debugInfo)
91 {
92 $this->debugInfo = $debugInfo;
93 }
94 /**
95 * @return EnterpriseTopazSidekickCommonDebugInfo
96 */
97 public function getDebugInfo()
98 {
99 return $this->debugInfo;
100 }
101 /**
102 * @param string
103 */
104 public function setDocumentId($documentId)
105 {
106 $this->documentId = $documentId;
107 }
108 /**
109 * @return string
110 */
111 public function getDocumentId()
112 {
113 return $this->documentId;
114 }
115 /**
116 * @param EnterpriseTopazSidekickCommonDocumentDriveDocumentMetadata
117 */
118 public function setDriveDocumentMetadata(EnterpriseTopazSidekickCommonDocumentDriveDocumentMetadata $driveDocumentMetadata)
119 {
120 $this->driveDocumentMetadata = $driveDocumentMetadata;
121 }
122 /**
123 * @return EnterpriseTopazSidekickCommonDocumentDriveDocumentMetadata
124 */
125 public function getDriveDocumentMetadata()
126 {
127 return $this->driveDocumentMetadata;
128 }
129 /**
130 * @param string
131 */
132 public function setGenericUrl($genericUrl)
133 {
134 $this->genericUrl = $genericUrl;
135 }
136 /**
137 * @return string
138 */
139 public function getGenericUrl()
140 {
141 return $this->genericUrl;
142 }
143 /**
144 * @param EnterpriseTopazSidekickCommonDocumentJustification
145 */
146 public function setJustification(EnterpriseTopazSidekickCommonDocumentJustification $justification)
147 {
148 $this->justification = $justification;
149 }
150 /**
151 * @return EnterpriseTopazSidekickCommonDocumentJustification
152 */
153 public function getJustification()
154 {
155 return $this->justification;
156 }
157 /**
158 * @param string
159 */
160 public function setMimeType($mimeType)
161 {
162 $this->mimeType = $mimeType;
163 }
164 /**
165 * @return string
166 */
167 public function getMimeType()
168 {
169 return $this->mimeType;
170 }
171 /**
172 * @param string
173 */
174 public function setProvenance($provenance)
175 {
176 $this->provenance = $provenance;
177 }
178 /**
179 * @return string
180 */
181 public function getProvenance()
182 {
183 return $this->provenance;
184 }
185 /**
186 * @param string
187 */
188 public function setReason($reason)
189 {
190 $this->reason = $reason;
191 }
192 /**
193 * @return string
194 */
195 public function getReason()
196 {
197 return $this->reason;
198 }
199 /**
200 * @param string
201 */
202 public function setSnippet($snippet)
203 {
204 $this->snippet = $snippet;
205 }
206 /**
207 * @return string
208 */
209 public function getSnippet()
210 {
211 return $this->snippet;
212 }
213 /**
214 * @param string
215 */
216 public function setThumbnailUrl($thumbnailUrl)
217 {
218 $this->thumbnailUrl = $thumbnailUrl;
219 }
220 /**
221 * @return string
222 */
223 public function getThumbnailUrl()
224 {
225 return $this->thumbnailUrl;
226 }
227 /**
228 * @param string
229 */
230 public function setTitle($title)
231 {
232 $this->title = $title;
233 }
234 /**
235 * @return string
236 */
237 public function getTitle()
238 {
239 return $this->title;
240 }
241 /**
242 * @param string
243 */
244 public function setType($type)
245 {
246 $this->type = $type;
247 }
248 /**
249 * @return string
250 */
251 public function getType()
252 {
253 return $this->type;
254 }
255 /**
256 * @param string
257 */
258 public function setUrl($url)
259 {
260 $this->url = $url;
261 }
262 /**
263 * @return string
264 */
265 public function getUrl()
266 {
267 return $this->url;
268 }
269}
270
271// Adding a class alias for backwards compatibility with the previous class name.
272class_alias(EnterpriseTopazSidekickCommonDocument::class, 'Google_Service_CloudSearch_EnterpriseTopazSidekickCommonDocument');
Note: See TracBrowser for help on using the repository browser.