Keine Beschreibung

Revision.php 3.1KB

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