source: vendor/google/apiclient-services/src/DiscoveryEngine/GoogleCloudDiscoveryengineV1alphaTargetSite.php@ e3d4e0a

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

Upload project files

  • Property mode set to 100644
File size: 4.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\DiscoveryEngine;
19
20class GoogleCloudDiscoveryengineV1alphaTargetSite extends \Google\Model
21{
22 /**
23 * @var bool
24 */
25 public $exactMatch;
26 protected $failureReasonType = GoogleCloudDiscoveryengineV1alphaTargetSiteFailureReason::class;
27 protected $failureReasonDataType = '';
28 /**
29 * @var string
30 */
31 public $generatedUriPattern;
32 /**
33 * @var string
34 */
35 public $indexingStatus;
36 /**
37 * @var string
38 */
39 public $name;
40 /**
41 * @var string
42 */
43 public $providedUriPattern;
44 /**
45 * @var string
46 */
47 public $rootDomainUri;
48 protected $siteVerificationInfoType = GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo::class;
49 protected $siteVerificationInfoDataType = '';
50 /**
51 * @var string
52 */
53 public $type;
54 /**
55 * @var string
56 */
57 public $updateTime;
58
59 /**
60 * @param bool
61 */
62 public function setExactMatch($exactMatch)
63 {
64 $this->exactMatch = $exactMatch;
65 }
66 /**
67 * @return bool
68 */
69 public function getExactMatch()
70 {
71 return $this->exactMatch;
72 }
73 /**
74 * @param GoogleCloudDiscoveryengineV1alphaTargetSiteFailureReason
75 */
76 public function setFailureReason(GoogleCloudDiscoveryengineV1alphaTargetSiteFailureReason $failureReason)
77 {
78 $this->failureReason = $failureReason;
79 }
80 /**
81 * @return GoogleCloudDiscoveryengineV1alphaTargetSiteFailureReason
82 */
83 public function getFailureReason()
84 {
85 return $this->failureReason;
86 }
87 /**
88 * @param string
89 */
90 public function setGeneratedUriPattern($generatedUriPattern)
91 {
92 $this->generatedUriPattern = $generatedUriPattern;
93 }
94 /**
95 * @return string
96 */
97 public function getGeneratedUriPattern()
98 {
99 return $this->generatedUriPattern;
100 }
101 /**
102 * @param string
103 */
104 public function setIndexingStatus($indexingStatus)
105 {
106 $this->indexingStatus = $indexingStatus;
107 }
108 /**
109 * @return string
110 */
111 public function getIndexingStatus()
112 {
113 return $this->indexingStatus;
114 }
115 /**
116 * @param string
117 */
118 public function setName($name)
119 {
120 $this->name = $name;
121 }
122 /**
123 * @return string
124 */
125 public function getName()
126 {
127 return $this->name;
128 }
129 /**
130 * @param string
131 */
132 public function setProvidedUriPattern($providedUriPattern)
133 {
134 $this->providedUriPattern = $providedUriPattern;
135 }
136 /**
137 * @return string
138 */
139 public function getProvidedUriPattern()
140 {
141 return $this->providedUriPattern;
142 }
143 /**
144 * @param string
145 */
146 public function setRootDomainUri($rootDomainUri)
147 {
148 $this->rootDomainUri = $rootDomainUri;
149 }
150 /**
151 * @return string
152 */
153 public function getRootDomainUri()
154 {
155 return $this->rootDomainUri;
156 }
157 /**
158 * @param GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo
159 */
160 public function setSiteVerificationInfo(GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo $siteVerificationInfo)
161 {
162 $this->siteVerificationInfo = $siteVerificationInfo;
163 }
164 /**
165 * @return GoogleCloudDiscoveryengineV1alphaSiteVerificationInfo
166 */
167 public function getSiteVerificationInfo()
168 {
169 return $this->siteVerificationInfo;
170 }
171 /**
172 * @param string
173 */
174 public function setType($type)
175 {
176 $this->type = $type;
177 }
178 /**
179 * @return string
180 */
181 public function getType()
182 {
183 return $this->type;
184 }
185 /**
186 * @param string
187 */
188 public function setUpdateTime($updateTime)
189 {
190 $this->updateTime = $updateTime;
191 }
192 /**
193 * @return string
194 */
195 public function getUpdateTime()
196 {
197 return $this->updateTime;
198 }
199}
200
201// Adding a class alias for backwards compatibility with the previous class name.
202class_alias(GoogleCloudDiscoveryengineV1alphaTargetSite::class, 'Google_Service_DiscoveryEngine_GoogleCloudDiscoveryengineV1alphaTargetSite');
Note: See TracBrowser for help on using the repository browser.