Initial commit

This commit is contained in:
Caribana
2017-05-26 11:41:26 +02:00
commit 61c24500af
6264 changed files with 645934 additions and 0 deletions

View File

@@ -0,0 +1,111 @@
<?php
/*
* Copyright 2016 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.
*/
class Google_Service_Calendar_EventAttendee extends Google_Model
{
public $additionalGuests;
public $comment;
public $displayName;
public $email;
public $id;
public $optional;
public $organizer;
public $resource;
public $responseStatus;
public $self;
public function setAdditionalGuests($additionalGuests)
{
$this->additionalGuests = $additionalGuests;
}
public function getAdditionalGuests()
{
return $this->additionalGuests;
}
public function setComment($comment)
{
$this->comment = $comment;
}
public function getComment()
{
return $this->comment;
}
public function setDisplayName($displayName)
{
$this->displayName = $displayName;
}
public function getDisplayName()
{
return $this->displayName;
}
public function setEmail($email)
{
$this->email = $email;
}
public function getEmail()
{
return $this->email;
}
public function setId($id)
{
$this->id = $id;
}
public function getId()
{
return $this->id;
}
public function setOptional($optional)
{
$this->optional = $optional;
}
public function getOptional()
{
return $this->optional;
}
public function setOrganizer($organizer)
{
$this->organizer = $organizer;
}
public function getOrganizer()
{
return $this->organizer;
}
public function setResource($resource)
{
$this->resource = $resource;
}
public function getResource()
{
return $this->resource;
}
public function setResponseStatus($responseStatus)
{
$this->responseStatus = $responseStatus;
}
public function getResponseStatus()
{
return $this->responseStatus;
}
public function setSelf($self)
{
$this->self = $self;
}
public function getSelf()
{
return $this->self;
}
}