source: vendor/google/apiclient-services/src/MapsPlaces/GoogleMapsPlacesV1Review.php

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

Upload project files

  • Property mode set to 100644
File size: 3.7 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\MapsPlaces;
19
20class GoogleMapsPlacesV1Review extends \Google\Model
21{
22 protected $authorAttributionType = GoogleMapsPlacesV1AuthorAttribution::class;
23 protected $authorAttributionDataType = '';
24 /**
25 * @var string
26 */
27 public $flagContentUri;
28 /**
29 * @var string
30 */
31 public $googleMapsUri;
32 /**
33 * @var string
34 */
35 public $name;
36 protected $originalTextType = GoogleTypeLocalizedText::class;
37 protected $originalTextDataType = '';
38 /**
39 * @var string
40 */
41 public $publishTime;
42 public $rating;
43 /**
44 * @var string
45 */
46 public $relativePublishTimeDescription;
47 protected $textType = GoogleTypeLocalizedText::class;
48 protected $textDataType = '';
49
50 /**
51 * @param GoogleMapsPlacesV1AuthorAttribution
52 */
53 public function setAuthorAttribution(GoogleMapsPlacesV1AuthorAttribution $authorAttribution)
54 {
55 $this->authorAttribution = $authorAttribution;
56 }
57 /**
58 * @return GoogleMapsPlacesV1AuthorAttribution
59 */
60 public function getAuthorAttribution()
61 {
62 return $this->authorAttribution;
63 }
64 /**
65 * @param string
66 */
67 public function setFlagContentUri($flagContentUri)
68 {
69 $this->flagContentUri = $flagContentUri;
70 }
71 /**
72 * @return string
73 */
74 public function getFlagContentUri()
75 {
76 return $this->flagContentUri;
77 }
78 /**
79 * @param string
80 */
81 public function setGoogleMapsUri($googleMapsUri)
82 {
83 $this->googleMapsUri = $googleMapsUri;
84 }
85 /**
86 * @return string
87 */
88 public function getGoogleMapsUri()
89 {
90 return $this->googleMapsUri;
91 }
92 /**
93 * @param string
94 */
95 public function setName($name)
96 {
97 $this->name = $name;
98 }
99 /**
100 * @return string
101 */
102 public function getName()
103 {
104 return $this->name;
105 }
106 /**
107 * @param GoogleTypeLocalizedText
108 */
109 public function setOriginalText(GoogleTypeLocalizedText $originalText)
110 {
111 $this->originalText = $originalText;
112 }
113 /**
114 * @return GoogleTypeLocalizedText
115 */
116 public function getOriginalText()
117 {
118 return $this->originalText;
119 }
120 /**
121 * @param string
122 */
123 public function setPublishTime($publishTime)
124 {
125 $this->publishTime = $publishTime;
126 }
127 /**
128 * @return string
129 */
130 public function getPublishTime()
131 {
132 return $this->publishTime;
133 }
134 public function setRating($rating)
135 {
136 $this->rating = $rating;
137 }
138 public function getRating()
139 {
140 return $this->rating;
141 }
142 /**
143 * @param string
144 */
145 public function setRelativePublishTimeDescription($relativePublishTimeDescription)
146 {
147 $this->relativePublishTimeDescription = $relativePublishTimeDescription;
148 }
149 /**
150 * @return string
151 */
152 public function getRelativePublishTimeDescription()
153 {
154 return $this->relativePublishTimeDescription;
155 }
156 /**
157 * @param GoogleTypeLocalizedText
158 */
159 public function setText(GoogleTypeLocalizedText $text)
160 {
161 $this->text = $text;
162 }
163 /**
164 * @return GoogleTypeLocalizedText
165 */
166 public function getText()
167 {
168 return $this->text;
169 }
170}
171
172// Adding a class alias for backwards compatibility with the previous class name.
173class_alias(GoogleMapsPlacesV1Review::class, 'Google_Service_MapsPlaces_GoogleMapsPlacesV1Review');
Note: See TracBrowser for help on using the repository browser.