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 Layersummary extends \Google\Collection 21{ 22 protected $collection_key = 'annotationTypes'; 23 /** 24 * @var int 25 */ 26 public $annotationCount; 27 /** 28 * @var string[] 29 */ 30 public $annotationTypes; 31 /** 32 * @var string 33 */ 34 public $annotationsDataLink; 35 /** 36 * @var string 37 */ 38 public $annotationsLink; 39 /** 40 * @var string 41 */ 42 public $contentVersion; 43 /** 44 * @var int 45 */ 46 public $dataCount; 47 /** 48 * @var string 49 */ 50 public $id; 51 /** 52 * @var string 53 */ 54 public $kind; 55 /** 56 * @var string 57 */ 58 public $layerId; 59 /** 60 * @var string 61 */ 62 public $selfLink; 63 /** 64 * @var string 65 */ 66 public $updated; 67 /** 68 * @var string 69 */ 70 public $volumeAnnotationsVersion; 71 /** 72 * @var string 73 */ 74 public $volumeId; 75 76 /** 77 * @param int 78 */ 79 public function setAnnotationCount($annotationCount) 80 { 81 $this->annotationCount = $annotationCount; 82 } 83 /** 84 * @return int 85 */ 86 public function getAnnotationCount() 87 { 88 return $this->annotationCount; 89 } 90 /** 91 * @param string[] 92 */ 93 public function setAnnotationTypes($annotationTypes) 94 { 95 $this->annotationTypes = $annotationTypes; 96 } 97 /** 98 * @return string[] 99 */ 100 public function getAnnotationTypes() 101 { 102 return $this->annotationTypes; 103 } 104 /** 105 * @param string 106 */ 107 public function setAnnotationsDataLink($annotationsDataLink) 108 { 109 $this->annotationsDataLink = $annotationsDataLink; 110 } 111 /** 112 * @return string 113 */ 114 public function getAnnotationsDataLink() 115 { 116 return $this->annotationsDataLink; 117 } 118 /** 119 * @param string 120 */ 121 public function setAnnotationsLink($annotationsLink) 122 { 123 $this->annotationsLink = $annotationsLink; 124 } 125 /** 126 * @return string 127 */ 128 public function getAnnotationsLink() 129 { 130 return $this->annotationsLink; 131 } 132 /** 133 * @param string 134 */ 135 public function setContentVersion($contentVersion) 136 { 137 $this->contentVersion = $contentVersion; 138 } 139 /** 140 * @return string 141 */ 142 public function getContentVersion() 143 { 144 return $this->contentVersion; 145 } 146 /** 147 * @param int 148 */ 149 public function setDataCount($dataCount) 150 { 151 $this->dataCount = $dataCount; 152 } 153 /** 154 * @return int 155 */ 156 public function getDataCount() 157 { 158 return $this->dataCount; 159 } 160 /** 161 * @param string 162 */ 163 public function setId($id) 164 { 165 $this->id = $id; 166 } 167 /** 168 * @return string 169 */ 170 public function getId() 171 { 172 return $this->id; 173 } 174 /** 175 * @param string 176 */ 177 public function setKind($kind) 178 { 179 $this->kind = $kind; 180 } 181 /** 182 * @return string 183 */ 184 public function getKind() 185 { 186 return $this->kind; 187 } 188 /** 189 * @param string 190 */ 191 public function setLayerId($layerId) 192 { 193 $this->layerId = $layerId; 194 } 195 /** 196 * @return string 197 */ 198 public function getLayerId() 199 { 200 return $this->layerId; 201 } 202 /** 203 * @param string 204 */ 205 public function setSelfLink($selfLink) 206 { 207 $this->selfLink = $selfLink; 208 } 209 /** 210 * @return string 211 */ 212 public function getSelfLink() 213 { 214 return $this->selfLink; 215 } 216 /** 217 * @param string 218 */ 219 public function setUpdated($updated) 220 { 221 $this->updated = $updated; 222 } 223 /** 224 * @return string 225 */ 226 public function getUpdated() 227 { 228 return $this->updated; 229 } 230 /** 231 * @param string 232 */ 233 public function setVolumeAnnotationsVersion($volumeAnnotationsVersion) 234 { 235 $this->volumeAnnotationsVersion = $volumeAnnotationsVersion; 236 } 237 /** 238 * @return string 239 */ 240 public function getVolumeAnnotationsVersion() 241 { 242 return $this->volumeAnnotationsVersion; 243 } 244 /** 245 * @param string 246 */ 247 public function setVolumeId($volumeId) 248 { 249 $this->volumeId = $volumeId; 250 } 251 /** 252 * @return string 253 */ 254 public function getVolumeId() 255 { 256 return $this->volumeId; 257 } 258} 259 260// Adding a class alias for backwards compatibility with the previous class name. 261class_alias(Layersummary::class, 'Google_Service_Books_Layersummary'); 262