etag = $etag; } /** * @return string */ public function getEtag() { return $this->etag; } /** * The list of Posts for this Blog. * * @param Post[] $items */ public function setItems($items) { $this->items = $items; } /** * @return Post[] */ public function getItems() { return $this->items; } /** * The kind of this entity. Always blogger#postList. * * @param string $kind */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * Pagination token to fetch the next page, if one exists. * * @param string $nextPageToken */ public function setNextPageToken($nextPageToken) { $this->nextPageToken = $nextPageToken; } /** * @return string */ public function getNextPageToken() { return $this->nextPageToken; } /** * Pagination token to fetch the previous page, if one exists. * * @param string $prevPageToken */ public function setPrevPageToken($prevPageToken) { $this->prevPageToken = $prevPageToken; } /** * @return string */ public function getPrevPageToken() { return $this->prevPageToken; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PostList::class, 'Google_Service_Blogger_PostList');