Nav apraksta

EventTag.php 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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_EventTag extends Google_Collection
  18. {
  19. protected $collection_key = 'siteIds';
  20. public $accountId;
  21. public $advertiserId;
  22. protected $advertiserIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
  23. protected $advertiserIdDimensionValueDataType = '';
  24. public $campaignId;
  25. protected $campaignIdDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
  26. protected $campaignIdDimensionValueDataType = '';
  27. public $enabledByDefault;
  28. public $excludeFromAdxRequests;
  29. public $id;
  30. public $kind;
  31. public $name;
  32. public $siteFilterType;
  33. public $siteIds;
  34. public $sslCompliant;
  35. public $status;
  36. public $subaccountId;
  37. public $type;
  38. public $url;
  39. public $urlEscapeLevels;
  40. public function setAccountId($accountId)
  41. {
  42. $this->accountId = $accountId;
  43. }
  44. public function getAccountId()
  45. {
  46. return $this->accountId;
  47. }
  48. public function setAdvertiserId($advertiserId)
  49. {
  50. $this->advertiserId = $advertiserId;
  51. }
  52. public function getAdvertiserId()
  53. {
  54. return $this->advertiserId;
  55. }
  56. /**
  57. * @param Google_Service_Dfareporting_DimensionValue
  58. */
  59. public function setAdvertiserIdDimensionValue(Google_Service_Dfareporting_DimensionValue $advertiserIdDimensionValue)
  60. {
  61. $this->advertiserIdDimensionValue = $advertiserIdDimensionValue;
  62. }
  63. /**
  64. * @return Google_Service_Dfareporting_DimensionValue
  65. */
  66. public function getAdvertiserIdDimensionValue()
  67. {
  68. return $this->advertiserIdDimensionValue;
  69. }
  70. public function setCampaignId($campaignId)
  71. {
  72. $this->campaignId = $campaignId;
  73. }
  74. public function getCampaignId()
  75. {
  76. return $this->campaignId;
  77. }
  78. /**
  79. * @param Google_Service_Dfareporting_DimensionValue
  80. */
  81. public function setCampaignIdDimensionValue(Google_Service_Dfareporting_DimensionValue $campaignIdDimensionValue)
  82. {
  83. $this->campaignIdDimensionValue = $campaignIdDimensionValue;
  84. }
  85. /**
  86. * @return Google_Service_Dfareporting_DimensionValue
  87. */
  88. public function getCampaignIdDimensionValue()
  89. {
  90. return $this->campaignIdDimensionValue;
  91. }
  92. public function setEnabledByDefault($enabledByDefault)
  93. {
  94. $this->enabledByDefault = $enabledByDefault;
  95. }
  96. public function getEnabledByDefault()
  97. {
  98. return $this->enabledByDefault;
  99. }
  100. public function setExcludeFromAdxRequests($excludeFromAdxRequests)
  101. {
  102. $this->excludeFromAdxRequests = $excludeFromAdxRequests;
  103. }
  104. public function getExcludeFromAdxRequests()
  105. {
  106. return $this->excludeFromAdxRequests;
  107. }
  108. public function setId($id)
  109. {
  110. $this->id = $id;
  111. }
  112. public function getId()
  113. {
  114. return $this->id;
  115. }
  116. public function setKind($kind)
  117. {
  118. $this->kind = $kind;
  119. }
  120. public function getKind()
  121. {
  122. return $this->kind;
  123. }
  124. public function setName($name)
  125. {
  126. $this->name = $name;
  127. }
  128. public function getName()
  129. {
  130. return $this->name;
  131. }
  132. public function setSiteFilterType($siteFilterType)
  133. {
  134. $this->siteFilterType = $siteFilterType;
  135. }
  136. public function getSiteFilterType()
  137. {
  138. return $this->siteFilterType;
  139. }
  140. public function setSiteIds($siteIds)
  141. {
  142. $this->siteIds = $siteIds;
  143. }
  144. public function getSiteIds()
  145. {
  146. return $this->siteIds;
  147. }
  148. public function setSslCompliant($sslCompliant)
  149. {
  150. $this->sslCompliant = $sslCompliant;
  151. }
  152. public function getSslCompliant()
  153. {
  154. return $this->sslCompliant;
  155. }
  156. public function setStatus($status)
  157. {
  158. $this->status = $status;
  159. }
  160. public function getStatus()
  161. {
  162. return $this->status;
  163. }
  164. public function setSubaccountId($subaccountId)
  165. {
  166. $this->subaccountId = $subaccountId;
  167. }
  168. public function getSubaccountId()
  169. {
  170. return $this->subaccountId;
  171. }
  172. public function setType($type)
  173. {
  174. $this->type = $type;
  175. }
  176. public function getType()
  177. {
  178. return $this->type;
  179. }
  180. public function setUrl($url)
  181. {
  182. $this->url = $url;
  183. }
  184. public function getUrl()
  185. {
  186. return $this->url;
  187. }
  188. public function setUrlEscapeLevels($urlEscapeLevels)
  189. {
  190. $this->urlEscapeLevels = $urlEscapeLevels;
  191. }
  192. public function getUrlEscapeLevels()
  193. {
  194. return $this->urlEscapeLevels;
  195. }
  196. }