説明なし

PawsRegisterRequest.php 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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_PawsRegisterRequest extends Google_Model
  18. {
  19. protected $antennaType = 'Google_Service_Spectrum_AntennaCharacteristics';
  20. protected $antennaDataType = '';
  21. protected $deviceDescType = 'Google_Service_Spectrum_DeviceDescriptor';
  22. protected $deviceDescDataType = '';
  23. protected $deviceOwnerType = 'Google_Service_Spectrum_DeviceOwner';
  24. protected $deviceOwnerDataType = '';
  25. protected $locationType = 'Google_Service_Spectrum_GeoLocation';
  26. protected $locationDataType = '';
  27. public $type;
  28. public $version;
  29. /**
  30. * @param Google_Service_Spectrum_AntennaCharacteristics
  31. */
  32. public function setAntenna(Google_Service_Spectrum_AntennaCharacteristics $antenna)
  33. {
  34. $this->antenna = $antenna;
  35. }
  36. /**
  37. * @return Google_Service_Spectrum_AntennaCharacteristics
  38. */
  39. public function getAntenna()
  40. {
  41. return $this->antenna;
  42. }
  43. /**
  44. * @param Google_Service_Spectrum_DeviceDescriptor
  45. */
  46. public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
  47. {
  48. $this->deviceDesc = $deviceDesc;
  49. }
  50. /**
  51. * @return Google_Service_Spectrum_DeviceDescriptor
  52. */
  53. public function getDeviceDesc()
  54. {
  55. return $this->deviceDesc;
  56. }
  57. /**
  58. * @param Google_Service_Spectrum_DeviceOwner
  59. */
  60. public function setDeviceOwner(Google_Service_Spectrum_DeviceOwner $deviceOwner)
  61. {
  62. $this->deviceOwner = $deviceOwner;
  63. }
  64. /**
  65. * @return Google_Service_Spectrum_DeviceOwner
  66. */
  67. public function getDeviceOwner()
  68. {
  69. return $this->deviceOwner;
  70. }
  71. /**
  72. * @param Google_Service_Spectrum_GeoLocation
  73. */
  74. public function setLocation(Google_Service_Spectrum_GeoLocation $location)
  75. {
  76. $this->location = $location;
  77. }
  78. /**
  79. * @return Google_Service_Spectrum_GeoLocation
  80. */
  81. public function getLocation()
  82. {
  83. return $this->location;
  84. }
  85. public function setType($type)
  86. {
  87. $this->type = $type;
  88. }
  89. public function getType()
  90. {
  91. return $this->type;
  92. }
  93. public function setVersion($version)
  94. {
  95. $this->version = $version;
  96. }
  97. public function getVersion()
  98. {
  99. return $this->version;
  100. }
  101. }