Bez popisu

Evaluation.php 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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_Devprojects_Evaluation extends Google_Collection
  18. {
  19. protected $collection_key = 'region';
  20. protected $abuseTypeType = 'Google_Service_Devprojects_AbuseType';
  21. protected $abuseTypeDataType = '';
  22. public $backend;
  23. public $comment;
  24. protected $featureType = 'Google_Service_Devprojects_Feature';
  25. protected $featureDataType = 'array';
  26. public $kind;
  27. protected $miscDataType = 'Google_Service_Devprojects_NameValuePair';
  28. protected $miscDataDataType = 'array';
  29. public $processTimeMillisecs;
  30. public $processedMicros;
  31. protected $regionType = 'Google_Service_Devprojects_Region';
  32. protected $regionDataType = 'array';
  33. public $score;
  34. public $status;
  35. protected $targetType = 'Google_Service_Devprojects_Target';
  36. protected $targetDataType = '';
  37. public $timestampMicros;
  38. public $version;
  39. public function setAbuseType(Google_Service_Devprojects_AbuseType $abuseType)
  40. {
  41. $this->abuseType = $abuseType;
  42. }
  43. public function getAbuseType()
  44. {
  45. return $this->abuseType;
  46. }
  47. public function setBackend($backend)
  48. {
  49. $this->backend = $backend;
  50. }
  51. public function getBackend()
  52. {
  53. return $this->backend;
  54. }
  55. public function setComment($comment)
  56. {
  57. $this->comment = $comment;
  58. }
  59. public function getComment()
  60. {
  61. return $this->comment;
  62. }
  63. public function setFeature($feature)
  64. {
  65. $this->feature = $feature;
  66. }
  67. public function getFeature()
  68. {
  69. return $this->feature;
  70. }
  71. public function setKind($kind)
  72. {
  73. $this->kind = $kind;
  74. }
  75. public function getKind()
  76. {
  77. return $this->kind;
  78. }
  79. public function setMiscData($miscData)
  80. {
  81. $this->miscData = $miscData;
  82. }
  83. public function getMiscData()
  84. {
  85. return $this->miscData;
  86. }
  87. public function setProcessTimeMillisecs($processTimeMillisecs)
  88. {
  89. $this->processTimeMillisecs = $processTimeMillisecs;
  90. }
  91. public function getProcessTimeMillisecs()
  92. {
  93. return $this->processTimeMillisecs;
  94. }
  95. public function setProcessedMicros($processedMicros)
  96. {
  97. $this->processedMicros = $processedMicros;
  98. }
  99. public function getProcessedMicros()
  100. {
  101. return $this->processedMicros;
  102. }
  103. public function setRegion($region)
  104. {
  105. $this->region = $region;
  106. }
  107. public function getRegion()
  108. {
  109. return $this->region;
  110. }
  111. public function setScore($score)
  112. {
  113. $this->score = $score;
  114. }
  115. public function getScore()
  116. {
  117. return $this->score;
  118. }
  119. public function setStatus($status)
  120. {
  121. $this->status = $status;
  122. }
  123. public function getStatus()
  124. {
  125. return $this->status;
  126. }
  127. public function setTarget(Google_Service_Devprojects_Target $target)
  128. {
  129. $this->target = $target;
  130. }
  131. public function getTarget()
  132. {
  133. return $this->target;
  134. }
  135. public function setTimestampMicros($timestampMicros)
  136. {
  137. $this->timestampMicros = $timestampMicros;
  138. }
  139. public function getTimestampMicros()
  140. {
  141. return $this->timestampMicros;
  142. }
  143. public function setVersion($version)
  144. {
  145. $this->version = $version;
  146. }
  147. public function getVersion()
  148. {
  149. return $this->version;
  150. }
  151. }