Google_Tags
The Google Pagespeed Insights Google Tags class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_ComputeService.php
- class Google_Tags extends Google_Model {
- public $fingerprint;
- public $items;
- public function setFingerprint($fingerprint) {
- $this->fingerprint = $fingerprint;
- }
- public function getFingerprint() {
- return $this->fingerprint;
- }
- public function setItems(/** array(Google_string) */ $items) {
- $this->assertIsArray($items, 'Google_string', __METHOD__);
- $this->items = $items;
- }
- public function getItems() {
- return $this->items;
- }
- }