Bez popisu

OperationMetadataV1Beta.php 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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_Appengine_OperationMetadataV1Beta extends Google_Collection
  18. {
  19. protected $collection_key = 'warning';
  20. protected $createVersionMetadataType = 'Google_Service_Appengine_CreateVersionMetadataV1Beta';
  21. protected $createVersionMetadataDataType = '';
  22. public $endTime;
  23. public $ephemeralMessage;
  24. public $insertTime;
  25. public $method;
  26. public $target;
  27. public $user;
  28. public $warning;
  29. /**
  30. * @param Google_Service_Appengine_CreateVersionMetadataV1Beta
  31. */
  32. public function setCreateVersionMetadata(Google_Service_Appengine_CreateVersionMetadataV1Beta $createVersionMetadata)
  33. {
  34. $this->createVersionMetadata = $createVersionMetadata;
  35. }
  36. /**
  37. * @return Google_Service_Appengine_CreateVersionMetadataV1Beta
  38. */
  39. public function getCreateVersionMetadata()
  40. {
  41. return $this->createVersionMetadata;
  42. }
  43. public function setEndTime($endTime)
  44. {
  45. $this->endTime = $endTime;
  46. }
  47. public function getEndTime()
  48. {
  49. return $this->endTime;
  50. }
  51. public function setEphemeralMessage($ephemeralMessage)
  52. {
  53. $this->ephemeralMessage = $ephemeralMessage;
  54. }
  55. public function getEphemeralMessage()
  56. {
  57. return $this->ephemeralMessage;
  58. }
  59. public function setInsertTime($insertTime)
  60. {
  61. $this->insertTime = $insertTime;
  62. }
  63. public function getInsertTime()
  64. {
  65. return $this->insertTime;
  66. }
  67. public function setMethod($method)
  68. {
  69. $this->method = $method;
  70. }
  71. public function getMethod()
  72. {
  73. return $this->method;
  74. }
  75. public function setTarget($target)
  76. {
  77. $this->target = $target;
  78. }
  79. public function getTarget()
  80. {
  81. return $this->target;
  82. }
  83. public function setUser($user)
  84. {
  85. $this->user = $user;
  86. }
  87. public function getUser()
  88. {
  89. return $this->user;
  90. }
  91. public function setWarning($warning)
  92. {
  93. $this->warning = $warning;
  94. }
  95. public function getWarning()
  96. {
  97. return $this->warning;
  98. }
  99. }