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_SiteSettings extends Google_Model
19{
20  public $activeViewOptOut;
21  public $adBlockingOptOut;
22  public $disableNewCookie;
23  protected $tagSettingType = 'Google_Service_Dfareporting_TagSetting';
24  protected $tagSettingDataType = '';
25  public $videoActiveViewOptOutTemplate;
26  public $vpaidAdapterChoiceTemplate;
27
28  public function setActiveViewOptOut($activeViewOptOut)
29  {
30    $this->activeViewOptOut = $activeViewOptOut;
31  }
32  public function getActiveViewOptOut()
33  {
34    return $this->activeViewOptOut;
35  }
36  public function setAdBlockingOptOut($adBlockingOptOut)
37  {
38    $this->adBlockingOptOut = $adBlockingOptOut;
39  }
40  public function getAdBlockingOptOut()
41  {
42    return $this->adBlockingOptOut;
43  }
44  public function setDisableNewCookie($disableNewCookie)
45  {
46    $this->disableNewCookie = $disableNewCookie;
47  }
48  public function getDisableNewCookie()
49  {
50    return $this->disableNewCookie;
51  }
52  /**
53   * @param Google_Service_Dfareporting_TagSetting
54   */
55  public function setTagSetting(Google_Service_Dfareporting_TagSetting $tagSetting)
56  {
57    $this->tagSetting = $tagSetting;
58  }
59  /**
60   * @return Google_Service_Dfareporting_TagSetting
61   */
62  public function getTagSetting()
63  {
64    return $this->tagSetting;
65  }
66  public function setVideoActiveViewOptOutTemplate($videoActiveViewOptOutTemplate)
67  {
68    $this->videoActiveViewOptOutTemplate = $videoActiveViewOptOutTemplate;
69  }
70  public function getVideoActiveViewOptOutTemplate()
71  {
72    return $this->videoActiveViewOptOutTemplate;
73  }
74  public function setVpaidAdapterChoiceTemplate($vpaidAdapterChoiceTemplate)
75  {
76    $this->vpaidAdapterChoiceTemplate = $vpaidAdapterChoiceTemplate;
77  }
78  public function getVpaidAdapterChoiceTemplate()
79  {
80    return $this->vpaidAdapterChoiceTemplate;
81  }
82}
83