Няма описание

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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_BigQueryDataTransfer_TransferRun extends Google_Model
  18. {
  19. public $dataSourceId;
  20. public $destinationDatasetId;
  21. public $endTime;
  22. protected $errorStatusType = 'Google_Service_BigQueryDataTransfer_Status';
  23. protected $errorStatusDataType = '';
  24. public $name;
  25. public $params;
  26. public $runTime;
  27. public $schedule;
  28. public $scheduleTime;
  29. public $startTime;
  30. public $state;
  31. public $updateTime;
  32. public $userId;
  33. public function setDataSourceId($dataSourceId)
  34. {
  35. $this->dataSourceId = $dataSourceId;
  36. }
  37. public function getDataSourceId()
  38. {
  39. return $this->dataSourceId;
  40. }
  41. public function setDestinationDatasetId($destinationDatasetId)
  42. {
  43. $this->destinationDatasetId = $destinationDatasetId;
  44. }
  45. public function getDestinationDatasetId()
  46. {
  47. return $this->destinationDatasetId;
  48. }
  49. public function setEndTime($endTime)
  50. {
  51. $this->endTime = $endTime;
  52. }
  53. public function getEndTime()
  54. {
  55. return $this->endTime;
  56. }
  57. /**
  58. * @param Google_Service_BigQueryDataTransfer_Status
  59. */
  60. public function setErrorStatus(Google_Service_BigQueryDataTransfer_Status $errorStatus)
  61. {
  62. $this->errorStatus = $errorStatus;
  63. }
  64. /**
  65. * @return Google_Service_BigQueryDataTransfer_Status
  66. */
  67. public function getErrorStatus()
  68. {
  69. return $this->errorStatus;
  70. }
  71. public function setName($name)
  72. {
  73. $this->name = $name;
  74. }
  75. public function getName()
  76. {
  77. return $this->name;
  78. }
  79. public function setParams($params)
  80. {
  81. $this->params = $params;
  82. }
  83. public function getParams()
  84. {
  85. return $this->params;
  86. }
  87. public function setRunTime($runTime)
  88. {
  89. $this->runTime = $runTime;
  90. }
  91. public function getRunTime()
  92. {
  93. return $this->runTime;
  94. }
  95. public function setSchedule($schedule)
  96. {
  97. $this->schedule = $schedule;
  98. }
  99. public function getSchedule()
  100. {
  101. return $this->schedule;
  102. }
  103. public function setScheduleTime($scheduleTime)
  104. {
  105. $this->scheduleTime = $scheduleTime;
  106. }
  107. public function getScheduleTime()
  108. {
  109. return $this->scheduleTime;
  110. }
  111. public function setStartTime($startTime)
  112. {
  113. $this->startTime = $startTime;
  114. }
  115. public function getStartTime()
  116. {
  117. return $this->startTime;
  118. }
  119. public function setState($state)
  120. {
  121. $this->state = $state;
  122. }
  123. public function getState()
  124. {
  125. return $this->state;
  126. }
  127. public function setUpdateTime($updateTime)
  128. {
  129. $this->updateTime = $updateTime;
  130. }
  131. public function getUpdateTime()
  132. {
  133. return $this->updateTime;
  134. }
  135. public function setUserId($userId)
  136. {
  137. $this->userId = $userId;
  138. }
  139. public function getUserId()
  140. {
  141. return $this->userId;
  142. }
  143. }