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