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_Revision extends Google_Model
19{
20  public $exportLinks;
21  public $id;
22  public $keepForever;
23  public $kind;
24  protected $lastModifyingUserType = 'Google_Service_Drive_User';
25  protected $lastModifyingUserDataType = '';
26  public $md5Checksum;
27  public $mimeType;
28  public $modifiedTime;
29  public $originalFilename;
30  public $publishAuto;
31  public $published;
32  public $publishedLink;
33  public $publishedOutsideDomain;
34  public $size;
35
36  public function setExportLinks($exportLinks)
37  {
38    $this->exportLinks = $exportLinks;
39  }
40  public function getExportLinks()
41  {
42    return $this->exportLinks;
43  }
44  public function setId($id)
45  {
46    $this->id = $id;
47  }
48  public function getId()
49  {
50    return $this->id;
51  }
52  public function setKeepForever($keepForever)
53  {
54    $this->keepForever = $keepForever;
55  }
56  public function getKeepForever()
57  {
58    return $this->keepForever;
59  }
60  public function setKind($kind)
61  {
62    $this->kind = $kind;
63  }
64  public function getKind()
65  {
66    return $this->kind;
67  }
68  /**
69   * @param Google_Service_Drive_User
70   */
71  public function setLastModifyingUser(Google_Service_Drive_User $lastModifyingUser)
72  {
73    $this->lastModifyingUser = $lastModifyingUser;
74  }
75  /**
76   * @return Google_Service_Drive_User
77   */
78  public function getLastModifyingUser()
79  {
80    return $this->lastModifyingUser;
81  }
82  public function setMd5Checksum($md5Checksum)
83  {
84    $this->md5Checksum = $md5Checksum;
85  }
86  public function getMd5Checksum()
87  {
88    return $this->md5Checksum;
89  }
90  public function setMimeType($mimeType)
91  {
92    $this->mimeType = $mimeType;
93  }
94  public function getMimeType()
95  {
96    return $this->mimeType;
97  }
98  public function setModifiedTime($modifiedTime)
99  {
100    $this->modifiedTime = $modifiedTime;
101  }
102  public function getModifiedTime()
103  {
104    return $this->modifiedTime;
105  }
106  public function setOriginalFilename($originalFilename)
107  {
108    $this->originalFilename = $originalFilename;
109  }
110  public function getOriginalFilename()
111  {
112    return $this->originalFilename;
113  }
114  public function setPublishAuto($publishAuto)
115  {
116    $this->publishAuto = $publishAuto;
117  }
118  public function getPublishAuto()
119  {
120    return $this->publishAuto;
121  }
122  public function setPublished($published)
123  {
124    $this->published = $published;
125  }
126  public function getPublished()
127  {
128    return $this->published;
129  }
130  public function setPublishedLink($publishedLink)
131  {
132    $this->publishedLink = $publishedLink;
133  }
134  public function getPublishedLink()
135  {
136    return $this->publishedLink;
137  }
138  public function setPublishedOutsideDomain($publishedOutsideDomain)
139  {
140    $this->publishedOutsideDomain = $publishedOutsideDomain;
141  }
142  public function getPublishedOutsideDomain()
143  {
144    return $this->publishedOutsideDomain;
145  }
146  public function setSize($size)
147  {
148    $this->size = $size;
149  }
150  public function getSize()
151  {
152    return $this->size;
153  }
154}
155