access = $access; } /** * @return string */ public function getAccess() { return $this->access; } /** * Created time for this bookshelf (formatted UTC timestamp with millisecond * resolution). * * @param string $created */ public function setCreated($created) { $this->created = $created; } /** * @return string */ public function getCreated() { return $this->created; } /** * Description of this bookshelf. * * @param string $description */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * Id of this bookshelf, only unique by user. * * @param int $id */ public function setId($id) { $this->id = $id; } /** * @return int */ public function getId() { return $this->id; } /** * Resource type for bookshelf metadata. * * @param string $kind */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * URL to this resource. * * @param string $selfLink */ public function setSelfLink($selfLink) { $this->selfLink = $selfLink; } /** * @return string */ public function getSelfLink() { return $this->selfLink; } /** * Title of this bookshelf. * * @param string $title */ public function setTitle($title) { $this->title = $title; } /** * @return string */ public function getTitle() { return $this->title; } /** * Last modified time of this bookshelf (formatted UTC timestamp with * millisecond resolution). * * @param string $updated */ public function setUpdated($updated) { $this->updated = $updated; } /** * @return string */ public function getUpdated() { return $this->updated; } /** * Number of volumes in this bookshelf. * * @param int $volumeCount */ public function setVolumeCount($volumeCount) { $this->volumeCount = $volumeCount; } /** * @return int */ public function getVolumeCount() { return $this->volumeCount; } /** * Last time a volume was added or removed from this bookshelf (formatted UTC * timestamp with millisecond resolution). * * @param string $volumesLastUpdated */ public function setVolumesLastUpdated($volumesLastUpdated) { $this->volumesLastUpdated = $volumesLastUpdated; } /** * @return string */ public function getVolumesLastUpdated() { return $this->volumesLastUpdated; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Bookshelf::class, 'Google_Service_Books_Bookshelf');