Google_EventGadget
The Google Pagespeed Insights Google EventGadget class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_CalendarService.php
- class Google_EventGadget extends Google_Model {
- public $display;
- public $height;
- public $iconLink;
- public $link;
- public $preferences;
- public $title;
- public $type;
- public $width;
- public function setDisplay($display) {
- $this->display = $display;
- }
- public function getDisplay() {
- return $this->display;
- }
- public function setHeight($height) {
- $this->height = $height;
- }
- public function getHeight() {
- return $this->height;
- }
- public function setIconLink($iconLink) {
- $this->iconLink = $iconLink;
- }
- public function getIconLink() {
- return $this->iconLink;
- }
- public function setLink($link) {
- $this->link = $link;
- }
- public function getLink() {
- return $this->link;
- }
- public function setPreferences($preferences) {
- $this->preferences = $preferences;
- }
- public function getPreferences() {
- return $this->preferences;
- }
- public function setTitle($title) {
- $this->title = $title;
- }
- public function getTitle() {
- return $this->title;
- }
- public function setType($type) {
- $this->type = $type;
- }
- public function getType() {
- return $this->type;
- }
- public function setWidth($width) {
- $this->width = $width;
- }
- public function getWidth() {
- return $this->width;
- }
- }