説明なし

TechnologyTargeting.php 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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_Dfareporting_TechnologyTargeting extends Google_Collection
  18. {
  19. protected $collection_key = 'platformTypes';
  20. protected $browsersType = 'Google_Service_Dfareporting_Browser';
  21. protected $browsersDataType = 'array';
  22. protected $connectionTypesType = 'Google_Service_Dfareporting_ConnectionType';
  23. protected $connectionTypesDataType = 'array';
  24. protected $mobileCarriersType = 'Google_Service_Dfareporting_MobileCarrier';
  25. protected $mobileCarriersDataType = 'array';
  26. protected $operatingSystemVersionsType = 'Google_Service_Dfareporting_OperatingSystemVersion';
  27. protected $operatingSystemVersionsDataType = 'array';
  28. protected $operatingSystemsType = 'Google_Service_Dfareporting_OperatingSystem';
  29. protected $operatingSystemsDataType = 'array';
  30. protected $platformTypesType = 'Google_Service_Dfareporting_PlatformType';
  31. protected $platformTypesDataType = 'array';
  32. /**
  33. * @param Google_Service_Dfareporting_Browser
  34. */
  35. public function setBrowsers($browsers)
  36. {
  37. $this->browsers = $browsers;
  38. }
  39. /**
  40. * @return Google_Service_Dfareporting_Browser
  41. */
  42. public function getBrowsers()
  43. {
  44. return $this->browsers;
  45. }
  46. /**
  47. * @param Google_Service_Dfareporting_ConnectionType
  48. */
  49. public function setConnectionTypes($connectionTypes)
  50. {
  51. $this->connectionTypes = $connectionTypes;
  52. }
  53. /**
  54. * @return Google_Service_Dfareporting_ConnectionType
  55. */
  56. public function getConnectionTypes()
  57. {
  58. return $this->connectionTypes;
  59. }
  60. /**
  61. * @param Google_Service_Dfareporting_MobileCarrier
  62. */
  63. public function setMobileCarriers($mobileCarriers)
  64. {
  65. $this->mobileCarriers = $mobileCarriers;
  66. }
  67. /**
  68. * @return Google_Service_Dfareporting_MobileCarrier
  69. */
  70. public function getMobileCarriers()
  71. {
  72. return $this->mobileCarriers;
  73. }
  74. /**
  75. * @param Google_Service_Dfareporting_OperatingSystemVersion
  76. */
  77. public function setOperatingSystemVersions($operatingSystemVersions)
  78. {
  79. $this->operatingSystemVersions = $operatingSystemVersions;
  80. }
  81. /**
  82. * @return Google_Service_Dfareporting_OperatingSystemVersion
  83. */
  84. public function getOperatingSystemVersions()
  85. {
  86. return $this->operatingSystemVersions;
  87. }
  88. /**
  89. * @param Google_Service_Dfareporting_OperatingSystem
  90. */
  91. public function setOperatingSystems($operatingSystems)
  92. {
  93. $this->operatingSystems = $operatingSystems;
  94. }
  95. /**
  96. * @return Google_Service_Dfareporting_OperatingSystem
  97. */
  98. public function getOperatingSystems()
  99. {
  100. return $this->operatingSystems;
  101. }
  102. /**
  103. * @param Google_Service_Dfareporting_PlatformType
  104. */
  105. public function setPlatformTypes($platformTypes)
  106. {
  107. $this->platformTypes = $platformTypes;
  108. }
  109. /**
  110. * @return Google_Service_Dfareporting_PlatformType
  111. */
  112. public function getPlatformTypes()
  113. {
  114. return $this->platformTypes;
  115. }
  116. }