Google_Events
The Google Pagespeed Insights Google Events class.
Defined (2)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_CalendarService.php
- class Google_Events extends Google_Model {
- public $accessRole;
- protected $__defaultRemindersType = 'Google_EventReminder';
- protected $__defaultRemindersDataType = 'array';
- public $defaultReminders;
- public $description;
- public $etag;
- protected $__itemsType = 'Google_Event';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public $nextPageToken;
- public $summary;
- public $timeZone;
- public $updated;
- public function setAccessRole($accessRole) {
- $this->accessRole = $accessRole;
- }
- public function getAccessRole() {
- return $this->accessRole;
- }
- public function setDefaultReminders(/** array(Google_EventReminder) */ $defaultReminders) {
- $this->assertIsArray($defaultReminders, 'Google_EventReminder', __METHOD__);
- $this->defaultReminders = $defaultReminders;
- }
- public function getDefaultReminders() {
- return $this->defaultReminders;
- }
- public function setDescription($description) {
- $this->description = $description;
- }
- public function getDescription() {
- return $this->description;
- }
- public function setEtag($etag) {
- $this->etag = $etag;
- }
- public function getEtag() {
- return $this->etag;
- }
- public function setItems(/** array(Google_Event) */ $items) {
- $this->assertIsArray($items, 'Google_Event', __METHOD__);
- $this->items = $items;
- }
- public function getItems() {
- return $this->items;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setNextPageToken($nextPageToken) {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken() {
- return $this->nextPageToken;
- }
- public function setSummary($summary) {
- $this->summary = $summary;
- }
- public function getSummary() {
- return $this->summary;
- }
- public function setTimeZone($timeZone) {
- $this->timeZone = $timeZone;
- }
- public function getTimeZone() {
- return $this->timeZone;
- }
- public function setUpdated($updated) {
- $this->updated = $updated;
- }
- public function getUpdated() {
- return $this->updated;
- }
- }
- /google-api/src/contrib/Google_GanService.php
- class Google_Events extends Google_Model {
- public $nextPageToken;
- protected $__itemsType = 'Google_Event';
- protected $__itemsDataType = 'array';
- public $items;
- public $kind;
- public function setNextPageToken($nextPageToken) {
- $this->nextPageToken = $nextPageToken;
- }
- public function getNextPageToken() {
- return $this->nextPageToken;
- }
- public function setItems(/** array(Google_Event) */ $items) {
- $this->assertIsArray($items, 'Google_Event', __METHOD__);
- $this->items = $items;
- }
- public function getItems() {
- return $this->items;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- }