Ei kuvausta

DealTermsGuaranteedFixedPriceTerms.php 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTerms extends Google_Collection
  18. {
  19. protected $collection_key = 'fixedPrices';
  20. protected $billingInfoType = 'Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTermsBillingInfo';
  21. protected $billingInfoDataType = '';
  22. protected $fixedPricesType = 'Google_Service_AdExchangeBuyer_PricePerBuyer';
  23. protected $fixedPricesDataType = 'array';
  24. public $guaranteedImpressions;
  25. public $guaranteedLooks;
  26. public $minimumDailyLooks;
  27. /**
  28. * @param Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTermsBillingInfo
  29. */
  30. public function setBillingInfo(Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTermsBillingInfo $billingInfo)
  31. {
  32. $this->billingInfo = $billingInfo;
  33. }
  34. /**
  35. * @return Google_Service_AdExchangeBuyer_DealTermsGuaranteedFixedPriceTermsBillingInfo
  36. */
  37. public function getBillingInfo()
  38. {
  39. return $this->billingInfo;
  40. }
  41. /**
  42. * @param Google_Service_AdExchangeBuyer_PricePerBuyer
  43. */
  44. public function setFixedPrices($fixedPrices)
  45. {
  46. $this->fixedPrices = $fixedPrices;
  47. }
  48. /**
  49. * @return Google_Service_AdExchangeBuyer_PricePerBuyer
  50. */
  51. public function getFixedPrices()
  52. {
  53. return $this->fixedPrices;
  54. }
  55. public function setGuaranteedImpressions($guaranteedImpressions)
  56. {
  57. $this->guaranteedImpressions = $guaranteedImpressions;
  58. }
  59. public function getGuaranteedImpressions()
  60. {
  61. return $this->guaranteedImpressions;
  62. }
  63. public function setGuaranteedLooks($guaranteedLooks)
  64. {
  65. $this->guaranteedLooks = $guaranteedLooks;
  66. }
  67. public function getGuaranteedLooks()
  68. {
  69. return $this->guaranteedLooks;
  70. }
  71. public function setMinimumDailyLooks($minimumDailyLooks)
  72. {
  73. $this->minimumDailyLooks = $minimumDailyLooks;
  74. }
  75. public function getMinimumDailyLooks()
  76. {
  77. return $this->minimumDailyLooks;
  78. }
  79. }