JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ namespace Google\Service\Libraryagent; class GoogleExampleLibraryagentV1Book extends \Google\Model { /** * The name of the book author. * * @var string */ public $author; /** * The resource name of the book. Book names have the form * `shelves/{shelf_id}/books/{book_id}`. The name is ignored when creating a * book. * * @var string */ public $name; /** * Value indicating whether the book has been read. * * @var bool */ public $read; /** * The title of the book. * * @var string */ public $title; /** * The name of the book author. * * @param string $author */ public function setAuthor($author) { $this->author = $author; } /** * @return string */ public function getAuthor() { return $this->author; } /** * The resource name of the book. Book names have the form * `shelves/{shelf_id}/books/{book_id}`. The name is ignored when creating a * book. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Value indicating whether the book has been read. * * @param bool $read */ public function setRead($read) { $this->read = $read; } /** * @return bool */ public function getRead() { return $this->read; } /** * The title of the book. * * @param string $title */ public function setTitle($title) { $this->title = $title; } /** * @return string */ public function getTitle() { return $this->title; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleExampleLibraryagentV1Book::class, 'Google_Service_Libraryagent_GoogleExampleLibraryagentV1Book');