Google_Tag
The Google Pagespeed Insights Google Tag class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_ModeratorService.php
- class Google_Tag extends Google_Model {
- public $text;
- public $kind;
- protected $__idType = 'Google_TagId';
- protected $__idDataType = '';
- public $id;
- public function setText($text) {
- $this->text = $text;
- }
- public function getText() {
- return $this->text;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setId(Google_TagId $id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- }