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_Adsense_Account extends Google_Collection
19{
20  protected $collection_key = 'pendingTasks';
21  public $createTime;
22  public $displayName;
23  public $name;
24  public $pendingTasks;
25  public $premium;
26  protected $timeZoneType = 'Google_Service_Adsense_TimeZone';
27  protected $timeZoneDataType = '';
28
29  public function setCreateTime($createTime)
30  {
31    $this->createTime = $createTime;
32  }
33  public function getCreateTime()
34  {
35    return $this->createTime;
36  }
37  public function setDisplayName($displayName)
38  {
39    $this->displayName = $displayName;
40  }
41  public function getDisplayName()
42  {
43    return $this->displayName;
44  }
45  public function setName($name)
46  {
47    $this->name = $name;
48  }
49  public function getName()
50  {
51    return $this->name;
52  }
53  public function setPendingTasks($pendingTasks)
54  {
55    $this->pendingTasks = $pendingTasks;
56  }
57  public function getPendingTasks()
58  {
59    return $this->pendingTasks;
60  }
61  public function setPremium($premium)
62  {
63    $this->premium = $premium;
64  }
65  public function getPremium()
66  {
67    return $this->premium;
68  }
69  /**
70   * @param Google_Service_Adsense_TimeZone
71   */
72  public function setTimeZone(Google_Service_Adsense_TimeZone $timeZone)
73  {
74    $this->timeZone = $timeZone;
75  }
76  /**
77   * @return Google_Service_Adsense_TimeZone
78   */
79  public function getTimeZone()
80  {
81    return $this->timeZone;
82  }
83}
84