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_Dfareporting_DirectorySite extends Google_Collection
19{
20  protected $collection_key = 'interstitialTagFormats';
21  public $id;
22  protected $idDimensionValueType = 'Google_Service_Dfareporting_DimensionValue';
23  protected $idDimensionValueDataType = '';
24  public $inpageTagFormats;
25  public $interstitialTagFormats;
26  public $kind;
27  public $name;
28  protected $settingsType = 'Google_Service_Dfareporting_DirectorySiteSettings';
29  protected $settingsDataType = '';
30  public $url;
31
32  public function setId($id)
33  {
34    $this->id = $id;
35  }
36  public function getId()
37  {
38    return $this->id;
39  }
40  /**
41   * @param Google_Service_Dfareporting_DimensionValue
42   */
43  public function setIdDimensionValue(Google_Service_Dfareporting_DimensionValue $idDimensionValue)
44  {
45    $this->idDimensionValue = $idDimensionValue;
46  }
47  /**
48   * @return Google_Service_Dfareporting_DimensionValue
49   */
50  public function getIdDimensionValue()
51  {
52    return $this->idDimensionValue;
53  }
54  public function setInpageTagFormats($inpageTagFormats)
55  {
56    $this->inpageTagFormats = $inpageTagFormats;
57  }
58  public function getInpageTagFormats()
59  {
60    return $this->inpageTagFormats;
61  }
62  public function setInterstitialTagFormats($interstitialTagFormats)
63  {
64    $this->interstitialTagFormats = $interstitialTagFormats;
65  }
66  public function getInterstitialTagFormats()
67  {
68    return $this->interstitialTagFormats;
69  }
70  public function setKind($kind)
71  {
72    $this->kind = $kind;
73  }
74  public function getKind()
75  {
76    return $this->kind;
77  }
78  public function setName($name)
79  {
80    $this->name = $name;
81  }
82  public function getName()
83  {
84    return $this->name;
85  }
86  /**
87   * @param Google_Service_Dfareporting_DirectorySiteSettings
88   */
89  public function setSettings(Google_Service_Dfareporting_DirectorySiteSettings $settings)
90  {
91    $this->settings = $settings;
92  }
93  /**
94   * @return Google_Service_Dfareporting_DirectorySiteSettings
95   */
96  public function getSettings()
97  {
98    return $this->settings;
99  }
100  public function setUrl($url)
101  {
102    $this->url = $url;
103  }
104  public function getUrl()
105  {
106    return $this->url;
107  }
108}
109