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
18namespace Google\Service\TagManager;
19
20class Entity extends \Google\Model
21{
22  /**
23   * @var string
24   */
25  public $changeStatus;
26  protected $clientType = Client::class;
27  protected $clientDataType = '';
28  protected $folderType = Folder::class;
29  protected $folderDataType = '';
30  protected $tagType = Tag::class;
31  protected $tagDataType = '';
32  protected $triggerType = Trigger::class;
33  protected $triggerDataType = '';
34  protected $variableType = Variable::class;
35  protected $variableDataType = '';
36
37  /**
38   * @param string
39   */
40  public function setChangeStatus($changeStatus)
41  {
42    $this->changeStatus = $changeStatus;
43  }
44  /**
45   * @return string
46   */
47  public function getChangeStatus()
48  {
49    return $this->changeStatus;
50  }
51  /**
52   * @param Client
53   */
54  public function setClient(Client $client)
55  {
56    $this->client = $client;
57  }
58  /**
59   * @return Client
60   */
61  public function getClient()
62  {
63    return $this->client;
64  }
65  /**
66   * @param Folder
67   */
68  public function setFolder(Folder $folder)
69  {
70    $this->folder = $folder;
71  }
72  /**
73   * @return Folder
74   */
75  public function getFolder()
76  {
77    return $this->folder;
78  }
79  /**
80   * @param Tag
81   */
82  public function setTag(Tag $tag)
83  {
84    $this->tag = $tag;
85  }
86  /**
87   * @return Tag
88   */
89  public function getTag()
90  {
91    return $this->tag;
92  }
93  /**
94   * @param Trigger
95   */
96  public function setTrigger(Trigger $trigger)
97  {
98    $this->trigger = $trigger;
99  }
100  /**
101   * @return Trigger
102   */
103  public function getTrigger()
104  {
105    return $this->trigger;
106  }
107  /**
108   * @param Variable
109   */
110  public function setVariable(Variable $variable)
111  {
112    $this->variable = $variable;
113  }
114  /**
115   * @return Variable
116   */
117  public function getVariable()
118  {
119    return $this->variable;
120  }
121}
122
123// Adding a class alias for backwards compatibility with the previous class name.
124class_alias(Entity::class, 'Google_Service_TagManager_Entity');
125