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
18class Google_Service_DataCatalog_GoogleCloudDatacatalogV1beta1SearchCatalogResult extends Google_Model
19{
20  public $linkedResource;
21  public $modifyTime;
22  public $relativeResourceName;
23  public $searchResultSubtype;
24  public $searchResultType;
25
26  public function setLinkedResource($linkedResource)
27  {
28    $this->linkedResource = $linkedResource;
29  }
30  public function getLinkedResource()
31  {
32    return $this->linkedResource;
33  }
34  public function setModifyTime($modifyTime)
35  {
36    $this->modifyTime = $modifyTime;
37  }
38  public function getModifyTime()
39  {
40    return $this->modifyTime;
41  }
42  public function setRelativeResourceName($relativeResourceName)
43  {
44    $this->relativeResourceName = $relativeResourceName;
45  }
46  public function getRelativeResourceName()
47  {
48    return $this->relativeResourceName;
49  }
50  public function setSearchResultSubtype($searchResultSubtype)
51  {
52    $this->searchResultSubtype = $searchResultSubtype;
53  }
54  public function getSearchResultSubtype()
55  {
56    return $this->searchResultSubtype;
57  }
58  public function setSearchResultType($searchResultType)
59  {
60    $this->searchResultType = $searchResultType;
61  }
62  public function getSearchResultType()
63  {
64    return $this->searchResultType;
65  }
66}
67