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