source: vendor/google/apiclient-services/src/CloudSearch/GoogleDocsResultInfo.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: 2.6 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\CloudSearch;
19
20class GoogleDocsResultInfo extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $attachmentSha1;
26 protected $cosmoIdType = Id::class;
27 protected $cosmoIdDataType = '';
28 /**
29 * @var int
30 */
31 public $cosmoNameSpace;
32 /**
33 * @var string
34 */
35 public $encryptedId;
36 /**
37 * @var string
38 */
39 public $mimeType;
40 protected $shareScopeType = ShareScope::class;
41 protected $shareScopeDataType = '';
42
43 /**
44 * @param string
45 */
46 public function setAttachmentSha1($attachmentSha1)
47 {
48 $this->attachmentSha1 = $attachmentSha1;
49 }
50 /**
51 * @return string
52 */
53 public function getAttachmentSha1()
54 {
55 return $this->attachmentSha1;
56 }
57 /**
58 * @param Id
59 */
60 public function setCosmoId(Id $cosmoId)
61 {
62 $this->cosmoId = $cosmoId;
63 }
64 /**
65 * @return Id
66 */
67 public function getCosmoId()
68 {
69 return $this->cosmoId;
70 }
71 /**
72 * @param int
73 */
74 public function setCosmoNameSpace($cosmoNameSpace)
75 {
76 $this->cosmoNameSpace = $cosmoNameSpace;
77 }
78 /**
79 * @return int
80 */
81 public function getCosmoNameSpace()
82 {
83 return $this->cosmoNameSpace;
84 }
85 /**
86 * @param string
87 */
88 public function setEncryptedId($encryptedId)
89 {
90 $this->encryptedId = $encryptedId;
91 }
92 /**
93 * @return string
94 */
95 public function getEncryptedId()
96 {
97 return $this->encryptedId;
98 }
99 /**
100 * @param string
101 */
102 public function setMimeType($mimeType)
103 {
104 $this->mimeType = $mimeType;
105 }
106 /**
107 * @return string
108 */
109 public function getMimeType()
110 {
111 return $this->mimeType;
112 }
113 /**
114 * @param ShareScope
115 */
116 public function setShareScope(ShareScope $shareScope)
117 {
118 $this->shareScope = $shareScope;
119 }
120 /**
121 * @return ShareScope
122 */
123 public function getShareScope()
124 {
125 return $this->shareScope;
126 }
127}
128
129// Adding a class alias for backwards compatibility with the previous class name.
130class_alias(GoogleDocsResultInfo::class, 'Google_Service_CloudSearch_GoogleDocsResultInfo');
Note: See TracBrowser for help on using the repository browser.