Nenhuma descrição

Data.php 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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_QPXExpress_Data extends Google_Collection
  18. {
  19. protected $collection_key = 'tax';
  20. protected $aircraftType = 'Google_Service_QPXExpress_AircraftData';
  21. protected $aircraftDataType = 'array';
  22. protected $airportType = 'Google_Service_QPXExpress_AirportData';
  23. protected $airportDataType = 'array';
  24. protected $carrierType = 'Google_Service_QPXExpress_CarrierData';
  25. protected $carrierDataType = 'array';
  26. protected $cityType = 'Google_Service_QPXExpress_CityData';
  27. protected $cityDataType = 'array';
  28. public $kind;
  29. protected $taxType = 'Google_Service_QPXExpress_TaxData';
  30. protected $taxDataType = 'array';
  31. /**
  32. * @param Google_Service_QPXExpress_AircraftData
  33. */
  34. public function setAircraft($aircraft)
  35. {
  36. $this->aircraft = $aircraft;
  37. }
  38. /**
  39. * @return Google_Service_QPXExpress_AircraftData
  40. */
  41. public function getAircraft()
  42. {
  43. return $this->aircraft;
  44. }
  45. /**
  46. * @param Google_Service_QPXExpress_AirportData
  47. */
  48. public function setAirport($airport)
  49. {
  50. $this->airport = $airport;
  51. }
  52. /**
  53. * @return Google_Service_QPXExpress_AirportData
  54. */
  55. public function getAirport()
  56. {
  57. return $this->airport;
  58. }
  59. /**
  60. * @param Google_Service_QPXExpress_CarrierData
  61. */
  62. public function setCarrier($carrier)
  63. {
  64. $this->carrier = $carrier;
  65. }
  66. /**
  67. * @return Google_Service_QPXExpress_CarrierData
  68. */
  69. public function getCarrier()
  70. {
  71. return $this->carrier;
  72. }
  73. /**
  74. * @param Google_Service_QPXExpress_CityData
  75. */
  76. public function setCity($city)
  77. {
  78. $this->city = $city;
  79. }
  80. /**
  81. * @return Google_Service_QPXExpress_CityData
  82. */
  83. public function getCity()
  84. {
  85. return $this->city;
  86. }
  87. public function setKind($kind)
  88. {
  89. $this->kind = $kind;
  90. }
  91. public function getKind()
  92. {
  93. return $this->kind;
  94. }
  95. /**
  96. * @param Google_Service_QPXExpress_TaxData
  97. */
  98. public function setTax($tax)
  99. {
  100. $this->tax = $tax;
  101. }
  102. /**
  103. * @return Google_Service_QPXExpress_TaxData
  104. */
  105. public function getTax()
  106. {
  107. return $this->tax;
  108. }
  109. }