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\Bigquery;
19
20class TableListTables extends \Google\Model
21{
22  protected $clusteringType = Clustering::class;
23  protected $clusteringDataType = '';
24  /**
25   * @var string
26   */
27  public $creationTime;
28  /**
29   * @var string
30   */
31  public $expirationTime;
32  /**
33   * @var string
34   */
35  public $friendlyName;
36  /**
37   * @var string
38   */
39  public $id;
40  /**
41   * @var string
42   */
43  public $kind;
44  /**
45   * @var string[]
46   */
47  public $labels;
48  protected $rangePartitioningType = RangePartitioning::class;
49  protected $rangePartitioningDataType = '';
50  protected $tableReferenceType = TableReference::class;
51  protected $tableReferenceDataType = '';
52  protected $timePartitioningType = TimePartitioning::class;
53  protected $timePartitioningDataType = '';
54  /**
55   * @var string
56   */
57  public $type;
58  protected $viewType = TableListTablesView::class;
59  protected $viewDataType = '';
60
61  /**
62   * @param Clustering
63   */
64  public function setClustering(Clustering $clustering)
65  {
66    $this->clustering = $clustering;
67  }
68  /**
69   * @return Clustering
70   */
71  public function getClustering()
72  {
73    return $this->clustering;
74  }
75  /**
76   * @param string
77   */
78  public function setCreationTime($creationTime)
79  {
80    $this->creationTime = $creationTime;
81  }
82  /**
83   * @return string
84   */
85  public function getCreationTime()
86  {
87    return $this->creationTime;
88  }
89  /**
90   * @param string
91   */
92  public function setExpirationTime($expirationTime)
93  {
94    $this->expirationTime = $expirationTime;
95  }
96  /**
97   * @return string
98   */
99  public function getExpirationTime()
100  {
101    return $this->expirationTime;
102  }
103  /**
104   * @param string
105   */
106  public function setFriendlyName($friendlyName)
107  {
108    $this->friendlyName = $friendlyName;
109  }
110  /**
111   * @return string
112   */
113  public function getFriendlyName()
114  {
115    return $this->friendlyName;
116  }
117  /**
118   * @param string
119   */
120  public function setId($id)
121  {
122    $this->id = $id;
123  }
124  /**
125   * @return string
126   */
127  public function getId()
128  {
129    return $this->id;
130  }
131  /**
132   * @param string
133   */
134  public function setKind($kind)
135  {
136    $this->kind = $kind;
137  }
138  /**
139   * @return string
140   */
141  public function getKind()
142  {
143    return $this->kind;
144  }
145  /**
146   * @param string[]
147   */
148  public function setLabels($labels)
149  {
150    $this->labels = $labels;
151  }
152  /**
153   * @return string[]
154   */
155  public function getLabels()
156  {
157    return $this->labels;
158  }
159  /**
160   * @param RangePartitioning
161   */
162  public function setRangePartitioning(RangePartitioning $rangePartitioning)
163  {
164    $this->rangePartitioning = $rangePartitioning;
165  }
166  /**
167   * @return RangePartitioning
168   */
169  public function getRangePartitioning()
170  {
171    return $this->rangePartitioning;
172  }
173  /**
174   * @param TableReference
175   */
176  public function setTableReference(TableReference $tableReference)
177  {
178    $this->tableReference = $tableReference;
179  }
180  /**
181   * @return TableReference
182   */
183  public function getTableReference()
184  {
185    return $this->tableReference;
186  }
187  /**
188   * @param TimePartitioning
189   */
190  public function setTimePartitioning(TimePartitioning $timePartitioning)
191  {
192    $this->timePartitioning = $timePartitioning;
193  }
194  /**
195   * @return TimePartitioning
196   */
197  public function getTimePartitioning()
198  {
199    return $this->timePartitioning;
200  }
201  /**
202   * @param string
203   */
204  public function setType($type)
205  {
206    $this->type = $type;
207  }
208  /**
209   * @return string
210   */
211  public function getType()
212  {
213    return $this->type;
214  }
215  /**
216   * @param TableListTablesView
217   */
218  public function setView(TableListTablesView $view)
219  {
220    $this->view = $view;
221  }
222  /**
223   * @return TableListTablesView
224   */
225  public function getView()
226  {
227    return $this->view;
228  }
229}
230
231// Adding a class alias for backwards compatibility with the previous class name.
232class_alias(TableListTables::class, 'Google_Service_Bigquery_TableListTables');
233