ProgrammaticGuaranteedTerm 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. namespace Google\Service\AuthorizedBuyersMarketplace;
  18. class ProgrammaticGuaranteedTerms extends \Google\Model
  19. {
  20. protected $fixedPriceType = Price::class;
  21. protected $fixedPriceDataType = '';
  22. /**
  23. * @var string
  24. */
  25. public $guaranteedLooks;
  26. /**
  27. * @var string
  28. */
  29. public $impressionCap;
  30. /**
  31. * @var string
  32. */
  33. public $minimumDailyLooks;
  34. /**
  35. * @var string
  36. */
  37. public $percentShareOfVoice;
  38. /**
  39. * @var string
  40. */
  41. public $reservationType;
  42. /**
  43. * @param Price
  44. */
  45. public function setFixedPrice(Price $fixedPrice)
  46. {
  47. $this->fixedPrice = $fixedPrice;
  48. }
  49. /**
  50. * @return Price
  51. */
  52. public function getFixedPrice()
  53. {
  54. return $this->fixedPrice;
  55. }
  56. /**
  57. * @param string
  58. */
  59. public function setGuaranteedLooks($guaranteedLooks)
  60. {
  61. $this->guaranteedLooks = $guaranteedLooks;
  62. }
  63. /**
  64. * @return string
  65. */
  66. public function getGuaranteedLooks()
  67. {
  68. return $this->guaranteedLooks;
  69. }
  70. /**
  71. * @param string
  72. */
  73. public function setImpressionCap($impressionCap)
  74. {
  75. $this->impressionCap = $impressionCap;
  76. }
  77. /**
  78. * @return string
  79. */
  80. public function getImpressionCap()
  81. {
  82. return $this->impressionCap;
  83. }
  84. /**
  85. * @param string
  86. */
  87. public function setMinimumDailyLooks($minimumDailyLooks)
  88. {
  89. $this->minimumDailyLooks = $minimumDailyLooks;
  90. }
  91. /**
  92. * @return string
  93. */
  94. public function getMinimumDailyLooks()
  95. {
  96. return $this->minimumDailyLooks;
  97. }
  98. /**
  99. * @param string
  100. */
  101. public function setPercentShareOfVoice($percentShareOfVoice)
  102. {
  103. $this->percentShareOfVoice = $percentShareOfVoice;
  104. }
  105. /**
  106. * @return string
  107. */
  108. public function getPercentShareOfVoice()
  109. {
  110. return $this->percentShareOfVoice;
  111. }
  112. /**
  113. * @param string
  114. */
  115. public function setReservationType($reservationType)
  116. {
  117. $this->reservationType = $reservationType;
  118. }
  119. /**
  120. * @return string
  121. */
  122. public function getReservationType()
  123. {
  124. return $this->reservationType;
  125. }
  126. }
  127. // Adding a class alias for backwards compatibility with the previous class name.
  128. class_alias(ProgrammaticGuaranteedTerms::class, 'Google_Service_AuthorizedBuyersMarketplace_ProgrammaticGuaranteedTerms');