Keine Beschreibung

FloodlightActivityPublisherDynamicTag.php 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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_FloodlightActivityPublisherDynamicTag extends Google_Model
  18. {
  19. public $clickThrough;
  20. public $directorySiteId;
  21. protected $dynamicTagType = 'Google_Service_Dfareporting_FloodlightActivityDynamicTag';
  22. protected $dynamicTagDataType = '';
  23. public $siteId;
  24. protected $siteIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
  25. protected $siteIdDimensionValueDataType = '';
  26. public $viewThrough;
  27. public function setClickThrough($clickThrough)
  28. {
  29. $this->clickThrough = $clickThrough;
  30. }
  31. public function getClickThrough()
  32. {
  33. return $this->clickThrough;
  34. }
  35. public function setDirectorySiteId($directorySiteId)
  36. {
  37. $this->directorySiteId = $directorySiteId;
  38. }
  39. public function getDirectorySiteId()
  40. {
  41. return $this->directorySiteId;
  42. }
  43. /**
  44. * @param Google_Service_Dfareporting_FloodlightActivityDynamicTag
  45. */
  46. public function setDynamicTag(Google_Service_Dfareporting_FloodlightActivityDynamicTag $dynamicTag)
  47. {
  48. $this->dynamicTag = $dynamicTag;
  49. }
  50. /**
  51. * @return Google_Service_Dfareporting_FloodlightActivityDynamicTag
  52. */
  53. public function getDynamicTag()
  54. {
  55. return $this->dynamicTag;
  56. }
  57. public function setSiteId($siteId)
  58. {
  59. $this->siteId = $siteId;
  60. }
  61. public function getSiteId()
  62. {
  63. return $this->siteId;
  64. }
  65. /**
  66. * @param Google_Service_Dfareporting_DimensionValue
  67. */
  68. public function setSiteIdDimensionValue(Google_Service_Dfareporting_DimensionValue $siteIdDimensionValue)
  69. {
  70. $this->siteIdDimensionValue = $siteIdDimensionValue;
  71. }
  72. /**
  73. * @return Google_Service_Dfareporting_DimensionValue
  74. */
  75. public function getSiteIdDimensionValue()
  76. {
  77. return $this->siteIdDimensionValue;
  78. }
  79. public function setViewThrough($viewThrough)
  80. {
  81. $this->viewThrough = $viewThrough;
  82. }
  83. public function getViewThrough()
  84. {
  85. return $this->viewThrough;
  86. }
  87. }