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_Drive_Reply extends Google_Model
19{
20  public $action;
21  protected $authorType = 'Google_Service_Drive_User';
22  protected $authorDataType = '';
23  public $content;
24  public $createdTime;
25  public $deleted;
26  public $htmlContent;
27  public $id;
28  public $kind;
29  public $modifiedTime;
30
31  public function setAction($action)
32  {
33    $this->action = $action;
34  }
35  public function getAction()
36  {
37    return $this->action;
38  }
39  /**
40   * @param Google_Service_Drive_User
41   */
42  public function setAuthor(Google_Service_Drive_User $author)
43  {
44    $this->author = $author;
45  }
46  /**
47   * @return Google_Service_Drive_User
48   */
49  public function getAuthor()
50  {
51    return $this->author;
52  }
53  public function setContent($content)
54  {
55    $this->content = $content;
56  }
57  public function getContent()
58  {
59    return $this->content;
60  }
61  public function setCreatedTime($createdTime)
62  {
63    $this->createdTime = $createdTime;
64  }
65  public function getCreatedTime()
66  {
67    return $this->createdTime;
68  }
69  public function setDeleted($deleted)
70  {
71    $this->deleted = $deleted;
72  }
73  public function getDeleted()
74  {
75    return $this->deleted;
76  }
77  public function setHtmlContent($htmlContent)
78  {
79    $this->htmlContent = $htmlContent;
80  }
81  public function getHtmlContent()
82  {
83    return $this->htmlContent;
84  }
85  public function setId($id)
86  {
87    $this->id = $id;
88  }
89  public function getId()
90  {
91    return $this->id;
92  }
93  public function setKind($kind)
94  {
95    $this->kind = $kind;
96  }
97  public function getKind()
98  {
99    return $this->kind;
100  }
101  public function setModifiedTime($modifiedTime)
102  {
103    $this->modifiedTime = $modifiedTime;
104  }
105  public function getModifiedTime()
106  {
107    return $this->modifiedTime;
108  }
109}
110