Нема описа

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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_AdSlot extends Google_Model
  18. {
  19. public $comment;
  20. public $compatibility;
  21. public $height;
  22. public $linkedPlacementId;
  23. public $name;
  24. public $paymentSourceType;
  25. public $primary;
  26. public $width;
  27. public function setComment($comment)
  28. {
  29. $this->comment = $comment;
  30. }
  31. public function getComment()
  32. {
  33. return $this->comment;
  34. }
  35. public function setCompatibility($compatibility)
  36. {
  37. $this->compatibility = $compatibility;
  38. }
  39. public function getCompatibility()
  40. {
  41. return $this->compatibility;
  42. }
  43. public function setHeight($height)
  44. {
  45. $this->height = $height;
  46. }
  47. public function getHeight()
  48. {
  49. return $this->height;
  50. }
  51. public function setLinkedPlacementId($linkedPlacementId)
  52. {
  53. $this->linkedPlacementId = $linkedPlacementId;
  54. }
  55. public function getLinkedPlacementId()
  56. {
  57. return $this->linkedPlacementId;
  58. }
  59. public function setName($name)
  60. {
  61. $this->name = $name;
  62. }
  63. public function getName()
  64. {
  65. return $this->name;
  66. }
  67. public function setPaymentSourceType($paymentSourceType)
  68. {
  69. $this->paymentSourceType = $paymentSourceType;
  70. }
  71. public function getPaymentSourceType()
  72. {
  73. return $this->paymentSourceType;
  74. }
  75. public function setPrimary($primary)
  76. {
  77. $this->primary = $primary;
  78. }
  79. public function getPrimary()
  80. {
  81. return $this->primary;
  82. }
  83. public function setWidth($width)
  84. {
  85. $this->width = $width;
  86. }
  87. public function getWidth()
  88. {
  89. return $this->width;
  90. }
  91. }