Google_EventReminders
The Google Pagespeed Insights Google EventReminders class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_CalendarService.php
- class Google_EventReminders extends Google_Model {
- protected $__overridesType = 'Google_EventReminder';
- protected $__overridesDataType = 'array';
- public $overrides;
- public $useDefault;
- public function setOverrides(/** array(Google_EventReminder) */ $overrides) {
- $this->assertIsArray($overrides, 'Google_EventReminder', __METHOD__);
- $this->overrides = $overrides;
- }
- public function getOverrides() {
- return $this->overrides;
- }
- public function setUseDefault($useDefault) {
- $this->useDefault = $useDefault;
- }
- public function getUseDefault() {
- return $this->useDefault;
- }
- }