Aucune description

PawsGetSpectrumRequest.php 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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_Spectrum_PawsGetSpectrumRequest extends Google_Model
  18. {
  19. protected $antennaType = 'Google_Service_Spectrum_AntennaCharacteristics';
  20. protected $antennaDataType = '';
  21. protected $capabilitiesType = 'Google_Service_Spectrum_DeviceCapabilities';
  22. protected $capabilitiesDataType = '';
  23. protected $deviceDescType = 'Google_Service_Spectrum_DeviceDescriptor';
  24. protected $deviceDescDataType = '';
  25. protected $locationType = 'Google_Service_Spectrum_GeoLocation';
  26. protected $locationDataType = '';
  27. protected $masterDeviceDescType = 'Google_Service_Spectrum_DeviceDescriptor';
  28. protected $masterDeviceDescDataType = '';
  29. protected $ownerType = 'Google_Service_Spectrum_DeviceOwner';
  30. protected $ownerDataType = '';
  31. public $requestType;
  32. public $type;
  33. public $version;
  34. /**
  35. * @param Google_Service_Spectrum_AntennaCharacteristics
  36. */
  37. public function setAntenna(Google_Service_Spectrum_AntennaCharacteristics $antenna)
  38. {
  39. $this->antenna = $antenna;
  40. }
  41. /**
  42. * @return Google_Service_Spectrum_AntennaCharacteristics
  43. */
  44. public function getAntenna()
  45. {
  46. return $this->antenna;
  47. }
  48. /**
  49. * @param Google_Service_Spectrum_DeviceCapabilities
  50. */
  51. public function setCapabilities(Google_Service_Spectrum_DeviceCapabilities $capabilities)
  52. {
  53. $this->capabilities = $capabilities;
  54. }
  55. /**
  56. * @return Google_Service_Spectrum_DeviceCapabilities
  57. */
  58. public function getCapabilities()
  59. {
  60. return $this->capabilities;
  61. }
  62. /**
  63. * @param Google_Service_Spectrum_DeviceDescriptor
  64. */
  65. public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
  66. {
  67. $this->deviceDesc = $deviceDesc;
  68. }
  69. /**
  70. * @return Google_Service_Spectrum_DeviceDescriptor
  71. */
  72. public function getDeviceDesc()
  73. {
  74. return $this->deviceDesc;
  75. }
  76. /**
  77. * @param Google_Service_Spectrum_GeoLocation
  78. */
  79. public function setLocation(Google_Service_Spectrum_GeoLocation $location)
  80. {
  81. $this->location = $location;
  82. }
  83. /**
  84. * @return Google_Service_Spectrum_GeoLocation
  85. */
  86. public function getLocation()
  87. {
  88. return $this->location;
  89. }
  90. /**
  91. * @param Google_Service_Spectrum_DeviceDescriptor
  92. */
  93. public function setMasterDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $masterDeviceDesc)
  94. {
  95. $this->masterDeviceDesc = $masterDeviceDesc;
  96. }
  97. /**
  98. * @return Google_Service_Spectrum_DeviceDescriptor
  99. */
  100. public function getMasterDeviceDesc()
  101. {
  102. return $this->masterDeviceDesc;
  103. }
  104. /**
  105. * @param Google_Service_Spectrum_DeviceOwner
  106. */
  107. public function setOwner(Google_Service_Spectrum_DeviceOwner $owner)
  108. {
  109. $this->owner = $owner;
  110. }
  111. /**
  112. * @return Google_Service_Spectrum_DeviceOwner
  113. */
  114. public function getOwner()
  115. {
  116. return $this->owner;
  117. }
  118. public function setRequestType($requestType)
  119. {
  120. $this->requestType = $requestType;
  121. }
  122. public function getRequestType()
  123. {
  124. return $this->requestType;
  125. }
  126. public function setType($type)
  127. {
  128. $this->type = $type;
  129. }
  130. public function getType()
  131. {
  132. return $this->type;
  133. }
  134. public function setVersion($version)
  135. {
  136. $this->version = $version;
  137. }
  138. public function getVersion()
  139. {
  140. return $this->version;
  141. }
  142. }