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
18class Google_Service_TagManager_ContainerVersionHeader extends Google_Model
19{
20  public $accountId;
21  public $containerId;
22  public $containerVersionId;
23  public $deleted;
24  public $name;
25  public $numClients;
26  public $numCustomTemplates;
27  public $numMacros;
28  public $numRules;
29  public $numTags;
30  public $numTriggers;
31  public $numVariables;
32  public $numZones;
33  public $path;
34
35  public function setAccountId($accountId)
36  {
37    $this->accountId = $accountId;
38  }
39  public function getAccountId()
40  {
41    return $this->accountId;
42  }
43  public function setContainerId($containerId)
44  {
45    $this->containerId = $containerId;
46  }
47  public function getContainerId()
48  {
49    return $this->containerId;
50  }
51  public function setContainerVersionId($containerVersionId)
52  {
53    $this->containerVersionId = $containerVersionId;
54  }
55  public function getContainerVersionId()
56  {
57    return $this->containerVersionId;
58  }
59  public function setDeleted($deleted)
60  {
61    $this->deleted = $deleted;
62  }
63  public function getDeleted()
64  {
65    return $this->deleted;
66  }
67  public function setName($name)
68  {
69    $this->name = $name;
70  }
71  public function getName()
72  {
73    return $this->name;
74  }
75  public function setNumClients($numClients)
76  {
77    $this->numClients = $numClients;
78  }
79  public function getNumClients()
80  {
81    return $this->numClients;
82  }
83  public function setNumCustomTemplates($numCustomTemplates)
84  {
85    $this->numCustomTemplates = $numCustomTemplates;
86  }
87  public function getNumCustomTemplates()
88  {
89    return $this->numCustomTemplates;
90  }
91  public function setNumMacros($numMacros)
92  {
93    $this->numMacros = $numMacros;
94  }
95  public function getNumMacros()
96  {
97    return $this->numMacros;
98  }
99  public function setNumRules($numRules)
100  {
101    $this->numRules = $numRules;
102  }
103  public function getNumRules()
104  {
105    return $this->numRules;
106  }
107  public function setNumTags($numTags)
108  {
109    $this->numTags = $numTags;
110  }
111  public function getNumTags()
112  {
113    return $this->numTags;
114  }
115  public function setNumTriggers($numTriggers)
116  {
117    $this->numTriggers = $numTriggers;
118  }
119  public function getNumTriggers()
120  {
121    return $this->numTriggers;
122  }
123  public function setNumVariables($numVariables)
124  {
125    $this->numVariables = $numVariables;
126  }
127  public function getNumVariables()
128  {
129    return $this->numVariables;
130  }
131  public function setNumZones($numZones)
132  {
133    $this->numZones = $numZones;
134  }
135  public function getNumZones()
136  {
137    return $this->numZones;
138  }
139  public function setPath($path)
140  {
141    $this->path = $path;
142  }
143  public function getPath()
144  {
145    return $this->path;
146  }
147}
148