Google_TopicList
The WordPress Core Google TopicList class.
Defined (1)
The class is defined in the following location(s).
- /google-api-php-client/src/contrib/Google_ModeratorService.php
- class Google_TopicList extends Google_Model {
- protected $__itemsType = 'Google_Topic';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public function setItems(/** array(Google_Topic) */ $items) {
- $this->assertIsArray($items, 'Google_Topic', __METHOD__);
- $this->items = $items;
- }
- public function getItems() {
- return $this->items;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- }