Google_FreeBusyResponse
The Google Pagespeed Insights Google FreeBusyResponse class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_CalendarService.php
- class Google_FreeBusyResponse extends Google_Model {
- protected $__calendarsType = 'Google_FreeBusyCalendar';
- protected $__calendarsDataType = 'map';
- public $calendars;
- protected $__groupsType = 'Google_FreeBusyGroup';
- protected $__groupsDataType = 'map';
- public $groups;
- public $kind;
- public $timeMax;
- public $timeMin;
- public function setCalendars(Google_FreeBusyCalendar $calendars) {
- $this->calendars = $calendars;
- }
- public function getCalendars() {
- return $this->calendars;
- }
- public function setGroups(Google_FreeBusyGroup $groups) {
- $this->groups = $groups;
- }
- public function getGroups() {
- return $this->groups;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- 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;
- }
- }