1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18class Google_Service_Appsactivity_User extends Google_Model
19{
20  public $isDeleted;
21  public $isMe;
22  public $name;
23  public $permissionId;
24  protected $photoType = 'Google_Service_Appsactivity_Photo';
25  protected $photoDataType = '';
26
27  public function setIsDeleted($isDeleted)
28  {
29    $this->isDeleted = $isDeleted;
30  }
31  public function getIsDeleted()
32  {
33    return $this->isDeleted;
34  }
35  public function setIsMe($isMe)
36  {
37    $this->isMe = $isMe;
38  }
39  public function getIsMe()
40  {
41    return $this->isMe;
42  }
43  public function setName($name)
44  {
45    $this->name = $name;
46  }
47  public function getName()
48  {
49    return $this->name;
50  }
51  public function setPermissionId($permissionId)
52  {
53    $this->permissionId = $permissionId;
54  }
55  public function getPermissionId()
56  {
57    return $this->permissionId;
58  }
59  /**
60   * @param Google_Service_Appsactivity_Photo
61   */
62  public function setPhoto(Google_Service_Appsactivity_Photo $photo)
63  {
64    $this->photo = $photo;
65  }
66  /**
67   * @return Google_Service_Appsactivity_Photo
68   */
69  public function getPhoto()
70  {
71    return $this->photo;
72  }
73}
74