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\CivicInfo;
19
20class GeocodingSummary extends \Google\Model
21{
22  /**
23   * @var bool
24   */
25  public $addressUnderstood;
26  protected $featureIdType = FeatureIdProto::class;
27  protected $featureIdDataType = '';
28  /**
29   * @var string
30   */
31  public $featureType;
32  public $positionPrecisionMeters;
33  /**
34   * @var string
35   */
36  public $queryString;
37
38  /**
39   * @param bool
40   */
41  public function setAddressUnderstood($addressUnderstood)
42  {
43    $this->addressUnderstood = $addressUnderstood;
44  }
45  /**
46   * @return bool
47   */
48  public function getAddressUnderstood()
49  {
50    return $this->addressUnderstood;
51  }
52  /**
53   * @param FeatureIdProto
54   */
55  public function setFeatureId(FeatureIdProto $featureId)
56  {
57    $this->featureId = $featureId;
58  }
59  /**
60   * @return FeatureIdProto
61   */
62  public function getFeatureId()
63  {
64    return $this->featureId;
65  }
66  /**
67   * @param string
68   */
69  public function setFeatureType($featureType)
70  {
71    $this->featureType = $featureType;
72  }
73  /**
74   * @return string
75   */
76  public function getFeatureType()
77  {
78    return $this->featureType;
79  }
80  public function setPositionPrecisionMeters($positionPrecisionMeters)
81  {
82    $this->positionPrecisionMeters = $positionPrecisionMeters;
83  }
84  public function getPositionPrecisionMeters()
85  {
86    return $this->positionPrecisionMeters;
87  }
88  /**
89   * @param string
90   */
91  public function setQueryString($queryString)
92  {
93    $this->queryString = $queryString;
94  }
95  /**
96   * @return string
97   */
98  public function getQueryString()
99  {
100    return $this->queryString;
101  }
102}
103
104// Adding a class alias for backwards compatibility with the previous class name.
105class_alias(GeocodingSummary::class, 'Google_Service_CivicInfo_GeocodingSummary');
106