Açıklama Yok

Entity.php 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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_TagManager_Entity extends Google_Model
  18. {
  19. public $changeStatus;
  20. protected $folderType = 'Google_Service_TagManager_Folder';
  21. protected $folderDataType = '';
  22. protected $tagType = 'Google_Service_TagManager_Tag';
  23. protected $tagDataType = '';
  24. protected $triggerType = 'Google_Service_TagManager_Trigger';
  25. protected $triggerDataType = '';
  26. protected $variableType = 'Google_Service_TagManager_Variable';
  27. protected $variableDataType = '';
  28. public function setChangeStatus($changeStatus)
  29. {
  30. $this->changeStatus = $changeStatus;
  31. }
  32. public function getChangeStatus()
  33. {
  34. return $this->changeStatus;
  35. }
  36. /**
  37. * @param Google_Service_TagManager_Folder
  38. */
  39. public function setFolder(Google_Service_TagManager_Folder $folder)
  40. {
  41. $this->folder = $folder;
  42. }
  43. /**
  44. * @return Google_Service_TagManager_Folder
  45. */
  46. public function getFolder()
  47. {
  48. return $this->folder;
  49. }
  50. /**
  51. * @param Google_Service_TagManager_Tag
  52. */
  53. public function setTag(Google_Service_TagManager_Tag $tag)
  54. {
  55. $this->tag = $tag;
  56. }
  57. /**
  58. * @return Google_Service_TagManager_Tag
  59. */
  60. public function getTag()
  61. {
  62. return $this->tag;
  63. }
  64. /**
  65. * @param Google_Service_TagManager_Trigger
  66. */
  67. public function setTrigger(Google_Service_TagManager_Trigger $trigger)
  68. {
  69. $this->trigger = $trigger;
  70. }
  71. /**
  72. * @return Google_Service_TagManager_Trigger
  73. */
  74. public function getTrigger()
  75. {
  76. return $this->trigger;
  77. }
  78. /**
  79. * @param Google_Service_TagManager_Variable
  80. */
  81. public function setVariable(Google_Service_TagManager_Variable $variable)
  82. {
  83. $this->variable = $variable;
  84. }
  85. /**
  86. * @return Google_Service_TagManager_Variable
  87. */
  88. public function getVariable()
  89. {
  90. return $this->variable;
  91. }
  92. }