Няма описание

CreativeField.php 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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_CreativeField extends Google_Model
  18. {
  19. public $accountId;
  20. public $advertiserId;
  21. protected $advertiserIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
  22. protected $advertiserIdDimensionValueDataType = '';
  23. public $id;
  24. public $kind;
  25. public $name;
  26. public $subaccountId;
  27. public function setAccountId($accountId)
  28. {
  29. $this->accountId = $accountId;
  30. }
  31. public function getAccountId()
  32. {
  33. return $this->accountId;
  34. }
  35. public function setAdvertiserId($advertiserId)
  36. {
  37. $this->advertiserId = $advertiserId;
  38. }
  39. public function getAdvertiserId()
  40. {
  41. return $this->advertiserId;
  42. }
  43. /**
  44. * @param Google_Service_Dfareporting_DimensionValue
  45. */
  46. public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue)
  47. {
  48. $this->advertiserIdDimensionValue = $advertiserIdDimensionValue;
  49. }
  50. /**
  51. * @return Google_Service_Dfareporting_DimensionValue
  52. */
  53. public function getAdvertiserIdDimensionValue()
  54. {
  55. return $this->advertiserIdDimensionValue;
  56. }
  57. public function setId($id)
  58. {
  59. $this->id = $id;
  60. }
  61. public function getId()
  62. {
  63. return $this->id;
  64. }
  65. public function setKind($kind)
  66. {
  67. $this->kind = $kind;
  68. }
  69. public function getKind()
  70. {
  71. return $this->kind;
  72. }
  73. public function setName($name)
  74. {
  75. $this->name = $name;
  76. }
  77. public function getName()
  78. {
  79. return $this->name;
  80. }
  81. public function setSubaccountId($subaccountId)
  82. {
  83. $this->subaccountId = $subaccountId;
  84. }
  85. public function getSubaccountId()
  86. {
  87. return $this->subaccountId;
  88. }
  89. }