source: vendor/google/apiclient-services/src/DiscoveryEngine/GoogleCloudDiscoveryengineV1Document.php@ f9c482b

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

Upload new project files

  • Property mode set to 100644
File size: 3.9 KB
RevLine 
[f9c482b]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\DiscoveryEngine;
19
20class GoogleCloudDiscoveryengineV1Document extends \Google\Model
21{
22 protected $contentType = GoogleCloudDiscoveryengineV1DocumentContent::class;
23 protected $contentDataType = '';
24 /**
25 * @var array[]
26 */
27 public $derivedStructData;
28 /**
29 * @var string
30 */
31 public $id;
32 protected $indexStatusType = GoogleCloudDiscoveryengineV1DocumentIndexStatus::class;
33 protected $indexStatusDataType = '';
34 /**
35 * @var string
36 */
37 public $indexTime;
38 /**
39 * @var string
40 */
41 public $jsonData;
42 /**
43 * @var string
44 */
45 public $name;
46 /**
47 * @var string
48 */
49 public $parentDocumentId;
50 /**
51 * @var string
52 */
53 public $schemaId;
54 /**
55 * @var array[]
56 */
57 public $structData;
58
59 /**
60 * @param GoogleCloudDiscoveryengineV1DocumentContent
61 */
62 public function setContent(GoogleCloudDiscoveryengineV1DocumentContent $content)
63 {
64 $this->content = $content;
65 }
66 /**
67 * @return GoogleCloudDiscoveryengineV1DocumentContent
68 */
69 public function getContent()
70 {
71 return $this->content;
72 }
73 /**
74 * @param array[]
75 */
76 public function setDerivedStructData($derivedStructData)
77 {
78 $this->derivedStructData = $derivedStructData;
79 }
80 /**
81 * @return array[]
82 */
83 public function getDerivedStructData()
84 {
85 return $this->derivedStructData;
86 }
87 /**
88 * @param string
89 */
90 public function setId($id)
91 {
92 $this->id = $id;
93 }
94 /**
95 * @return string
96 */
97 public function getId()
98 {
99 return $this->id;
100 }
101 /**
102 * @param GoogleCloudDiscoveryengineV1DocumentIndexStatus
103 */
104 public function setIndexStatus(GoogleCloudDiscoveryengineV1DocumentIndexStatus $indexStatus)
105 {
106 $this->indexStatus = $indexStatus;
107 }
108 /**
109 * @return GoogleCloudDiscoveryengineV1DocumentIndexStatus
110 */
111 public function getIndexStatus()
112 {
113 return $this->indexStatus;
114 }
115 /**
116 * @param string
117 */
118 public function setIndexTime($indexTime)
119 {
120 $this->indexTime = $indexTime;
121 }
122 /**
123 * @return string
124 */
125 public function getIndexTime()
126 {
127 return $this->indexTime;
128 }
129 /**
130 * @param string
131 */
132 public function setJsonData($jsonData)
133 {
134 $this->jsonData = $jsonData;
135 }
136 /**
137 * @return string
138 */
139 public function getJsonData()
140 {
141 return $this->jsonData;
142 }
143 /**
144 * @param string
145 */
146 public function setName($name)
147 {
148 $this->name = $name;
149 }
150 /**
151 * @return string
152 */
153 public function getName()
154 {
155 return $this->name;
156 }
157 /**
158 * @param string
159 */
160 public function setParentDocumentId($parentDocumentId)
161 {
162 $this->parentDocumentId = $parentDocumentId;
163 }
164 /**
165 * @return string
166 */
167 public function getParentDocumentId()
168 {
169 return $this->parentDocumentId;
170 }
171 /**
172 * @param string
173 */
174 public function setSchemaId($schemaId)
175 {
176 $this->schemaId = $schemaId;
177 }
178 /**
179 * @return string
180 */
181 public function getSchemaId()
182 {
183 return $this->schemaId;
184 }
185 /**
186 * @param array[]
187 */
188 public function setStructData($structData)
189 {
190 $this->structData = $structData;
191 }
192 /**
193 * @return array[]
194 */
195 public function getStructData()
196 {
197 return $this->structData;
198 }
199}
200
201// Adding a class alias for backwards compatibility with the previous class name.
202class_alias(GoogleCloudDiscoveryengineV1Document::class, 'Google_Service_DiscoveryEngine_GoogleCloudDiscoveryengineV1Document');
Note: See TracBrowser for help on using the repository browser.