Google_FreeBusyRequest
The Google Pagespeed Insights Google FreeBusyRequest class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_CalendarService.php
- class Google_FreeBusyRequest extends Google_Model {
- public $calendarExpansionMax;
- public $groupExpansionMax;
- protected $__itemsType = 'Google_FreeBusyRequestItem';
- protected $__itemsDataType = 'array';
- public $items;
- public $timeMax;
- public $timeMin;
- public $timeZone;
- public function setCalendarExpansionMax($calendarExpansionMax) {
- $this->calendarExpansionMax = $calendarExpansionMax;
- }
- public function getCalendarExpansionMax() {
- return $this->calendarExpansionMax;
- }
- public function setGroupExpansionMax($groupExpansionMax) {
- $this->groupExpansionMax = $groupExpansionMax;
- }
- public function getGroupExpansionMax() {
- return $this->groupExpansionMax;
- }
- public function setItems(/** array(Google_FreeBusyRequestItem) */ $items) {
- $this->assertIsArray($items, 'Google_FreeBusyRequestItem', __METHOD__);
- $this->items = $items;
- }
- public function getItems() {
- return $this->items;
- }
- public function setTimeMax($timeMax) {
- $this->timeMax = $timeMax;
- }
- public function getTimeMax() {
- return $this->timeMax;
- }
- public function setTimeMin($timeMin) {
- $this->timeMin = $timeMin;
- }
- public function getTimeMin() {
- return $this->timeMin;
- }
- public function setTimeZone($timeZone) {
- $this->timeZone = $timeZone;
- }
- public function getTimeZone() {
- return $this->timeZone;
- }
- }