source: vendor/google/apiclient-services/src/Books/Review.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.3 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\Books;
19
20class Review extends \Google\Model
21{
22 protected $authorType = ReviewAuthor::class;
23 protected $authorDataType = '';
24 /**
25 * @var string
26 */
27 public $content;
28 /**
29 * @var string
30 */
31 public $date;
32 /**
33 * @var string
34 */
35 public $fullTextUrl;
36 /**
37 * @var string
38 */
39 public $kind;
40 /**
41 * @var string
42 */
43 public $rating;
44 protected $sourceType = ReviewSource::class;
45 protected $sourceDataType = '';
46 /**
47 * @var string
48 */
49 public $title;
50 /**
51 * @var string
52 */
53 public $type;
54 /**
55 * @var string
56 */
57 public $volumeId;
58
59 /**
60 * @param ReviewAuthor
61 */
62 public function setAuthor(ReviewAuthor $author)
63 {
64 $this->author = $author;
65 }
66 /**
67 * @return ReviewAuthor
68 */
69 public function getAuthor()
70 {
71 return $this->author;
72 }
73 /**
74 * @param string
75 */
76 public function setContent($content)
77 {
78 $this->content = $content;
79 }
80 /**
81 * @return string
82 */
83 public function getContent()
84 {
85 return $this->content;
86 }
87 /**
88 * @param string
89 */
90 public function setDate($date)
91 {
92 $this->date = $date;
93 }
94 /**
95 * @return string
96 */
97 public function getDate()
98 {
99 return $this->date;
100 }
101 /**
102 * @param string
103 */
104 public function setFullTextUrl($fullTextUrl)
105 {
106 $this->fullTextUrl = $fullTextUrl;
107 }
108 /**
109 * @return string
110 */
111 public function getFullTextUrl()
112 {
113 return $this->fullTextUrl;
114 }
115 /**
116 * @param string
117 */
118 public function setKind($kind)
119 {
120 $this->kind = $kind;
121 }
122 /**
123 * @return string
124 */
125 public function getKind()
126 {
127 return $this->kind;
128 }
129 /**
130 * @param string
131 */
132 public function setRating($rating)
133 {
134 $this->rating = $rating;
135 }
136 /**
137 * @return string
138 */
139 public function getRating()
140 {
141 return $this->rating;
142 }
143 /**
144 * @param ReviewSource
145 */
146 public function setSource(ReviewSource $source)
147 {
148 $this->source = $source;
149 }
150 /**
151 * @return ReviewSource
152 */
153 public function getSource()
154 {
155 return $this->source;
156 }
157 /**
158 * @param string
159 */
160 public function setTitle($title)
161 {
162 $this->title = $title;
163 }
164 /**
165 * @return string
166 */
167 public function getTitle()
168 {
169 return $this->title;
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 setVolumeId($volumeId)
189 {
190 $this->volumeId = $volumeId;
191 }
192 /**
193 * @return string
194 */
195 public function getVolumeId()
196 {
197 return $this->volumeId;
198 }
199}
200
201// Adding a class alias for backwards compatibility with the previous class name.
202class_alias(Review::class, 'Google_Service_Books_Review');
Note: See TracBrowser for help on using the repository browser.