142 lines
3.8 KiB
PHP
142 lines
3.8 KiB
PHP
<?php
|
|
/*
|
|
* Copyright 2014 Google Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
* use this file except in compliance with the License. You may obtain a copy of
|
|
* the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations under
|
|
* the License.
|
|
*/
|
|
|
|
namespace Google\Service\CloudSearch;
|
|
|
|
class EnterpriseTopazSidekickFindMeetingTimeCardProto extends \Google\Collection
|
|
{
|
|
protected $collection_key = 'skippedInvitees';
|
|
protected $commonAvailableTimeSlotsType = EnterpriseTopazSidekickTimeSlot::class;
|
|
protected $commonAvailableTimeSlotsDataType = 'array';
|
|
protected $inviteesType = EnterpriseTopazSidekickPerson::class;
|
|
protected $inviteesDataType = 'array';
|
|
protected $requesterType = EnterpriseTopazSidekickPerson::class;
|
|
protected $requesterDataType = '';
|
|
protected $scheduledMeetingType = EnterpriseTopazSidekickScheduledMeeting::class;
|
|
protected $scheduledMeetingDataType = '';
|
|
protected $skippedInviteesType = EnterpriseTopazSidekickPerson::class;
|
|
protected $skippedInviteesDataType = 'array';
|
|
protected $timeBoundariesType = EnterpriseTopazSidekickTimeSlot::class;
|
|
protected $timeBoundariesDataType = '';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $timezoneId;
|
|
|
|
/**
|
|
* @param EnterpriseTopazSidekickTimeSlot[]
|
|
*/
|
|
public function setCommonAvailableTimeSlots($commonAvailableTimeSlots)
|
|
{
|
|
$this->commonAvailableTimeSlots = $commonAvailableTimeSlots;
|
|
}
|
|
/**
|
|
* @return EnterpriseTopazSidekickTimeSlot[]
|
|
*/
|
|
public function getCommonAvailableTimeSlots()
|
|
{
|
|
return $this->commonAvailableTimeSlots;
|
|
}
|
|
/**
|
|
* @param EnterpriseTopazSidekickPerson[]
|
|
*/
|
|
public function setInvitees($invitees)
|
|
{
|
|
$this->invitees = $invitees;
|
|
}
|
|
/**
|
|
* @return EnterpriseTopazSidekickPerson[]
|
|
*/
|
|
public function getInvitees()
|
|
{
|
|
return $this->invitees;
|
|
}
|
|
/**
|
|
* @param EnterpriseTopazSidekickPerson
|
|
*/
|
|
public function setRequester(EnterpriseTopazSidekickPerson $requester)
|
|
{
|
|
$this->requester = $requester;
|
|
}
|
|
/**
|
|
* @return EnterpriseTopazSidekickPerson
|
|
*/
|
|
public function getRequester()
|
|
{
|
|
return $this->requester;
|
|
}
|
|
/**
|
|
* @param EnterpriseTopazSidekickScheduledMeeting
|
|
*/
|
|
public function setScheduledMeeting(EnterpriseTopazSidekickScheduledMeeting $scheduledMeeting)
|
|
{
|
|
$this->scheduledMeeting = $scheduledMeeting;
|
|
}
|
|
/**
|
|
* @return EnterpriseTopazSidekickScheduledMeeting
|
|
*/
|
|
public function getScheduledMeeting()
|
|
{
|
|
return $this->scheduledMeeting;
|
|
}
|
|
/**
|
|
* @param EnterpriseTopazSidekickPerson[]
|
|
*/
|
|
public function setSkippedInvitees($skippedInvitees)
|
|
{
|
|
$this->skippedInvitees = $skippedInvitees;
|
|
}
|
|
/**
|
|
* @return EnterpriseTopazSidekickPerson[]
|
|
*/
|
|
public function getSkippedInvitees()
|
|
{
|
|
return $this->skippedInvitees;
|
|
}
|
|
/**
|
|
* @param EnterpriseTopazSidekickTimeSlot
|
|
*/
|
|
public function setTimeBoundaries(EnterpriseTopazSidekickTimeSlot $timeBoundaries)
|
|
{
|
|
$this->timeBoundaries = $timeBoundaries;
|
|
}
|
|
/**
|
|
* @return EnterpriseTopazSidekickTimeSlot
|
|
*/
|
|
public function getTimeBoundaries()
|
|
{
|
|
return $this->timeBoundaries;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setTimezoneId($timezoneId)
|
|
{
|
|
$this->timezoneId = $timezoneId;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getTimezoneId()
|
|
{
|
|
return $this->timezoneId;
|
|
}
|
|
}
|
|
|
|
// Adding a class alias for backwards compatibility with the previous class name.
|
|
class_alias(EnterpriseTopazSidekickFindMeetingTimeCardProto::class, 'Google_Service_CloudSearch_EnterpriseTopazSidekickFindMeetingTimeCardProto');
|