Google_PostReplies
The Google Books Importer Google PostReplies class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_BloggerService.php
- class Google_PostReplies extends Google_Model {
- protected $__itemsType = 'Google_Comment';
- protected $__itemsDataType = 'array';
- public $items;
- public $selfLink;
- public $totalItems;
- public function setItems(/** array(Google_Comment) */ $items) {
- $this->assertIsArray($items, 'Google_Comment', __METHOD__);
- $this->items = $items;
- }
- public function getItems() {
- return $this->items;
- }
- public function setSelfLink( $selfLink) {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink() {
- return $this->selfLink;
- }
- public function setTotalItems( $totalItems) {
- $this->totalItems = $totalItems;
- }
- public function getTotalItems() {
- return $this->totalItems;
- }
- }