Geen omschrijving

Sku.php 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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_Cloudbilling_Sku extends Google_Collection
  18. {
  19. protected $collection_key = 'serviceRegions';
  20. protected $categoryType = 'Google_Service_Cloudbilling_Category';
  21. protected $categoryDataType = '';
  22. public $description;
  23. public $name;
  24. protected $pricingInfoType = 'Google_Service_Cloudbilling_PricingInfo';
  25. protected $pricingInfoDataType = 'array';
  26. public $serviceProviderName;
  27. public $serviceRegions;
  28. public $skuId;
  29. /**
  30. * @param Google_Service_Cloudbilling_Category
  31. */
  32. public function setCategory(Google_Service_Cloudbilling_Category $category)
  33. {
  34. $this->category = $category;
  35. }
  36. /**
  37. * @return Google_Service_Cloudbilling_Category
  38. */
  39. public function getCategory()
  40. {
  41. return $this->category;
  42. }
  43. public function setDescription($description)
  44. {
  45. $this->description = $description;
  46. }
  47. public function getDescription()
  48. {
  49. return $this->description;
  50. }
  51. public function setName($name)
  52. {
  53. $this->name = $name;
  54. }
  55. public function getName()
  56. {
  57. return $this->name;
  58. }
  59. /**
  60. * @param Google_Service_Cloudbilling_PricingInfo
  61. */
  62. public function setPricingInfo($pricingInfo)
  63. {
  64. $this->pricingInfo = $pricingInfo;
  65. }
  66. /**
  67. * @return Google_Service_Cloudbilling_PricingInfo
  68. */
  69. public function getPricingInfo()
  70. {
  71. return $this->pricingInfo;
  72. }
  73. public function setServiceProviderName($serviceProviderName)
  74. {
  75. $this->serviceProviderName = $serviceProviderName;
  76. }
  77. public function getServiceProviderName()
  78. {
  79. return $this->serviceProviderName;
  80. }
  81. public function setServiceRegions($serviceRegions)
  82. {
  83. $this->serviceRegions = $serviceRegions;
  84. }
  85. public function getServiceRegions()
  86. {
  87. return $this->serviceRegions;
  88. }
  89. public function setSkuId($skuId)
  90. {
  91. $this->skuId = $skuId;
  92. }
  93. public function getSkuId()
  94. {
  95. return $this->skuId;
  96. }
  97. }