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_Doubleclicksearch_ReportApiColumnSpec extends Google_Model
19{
20  public $columnName;
21  public $customDimensionName;
22  public $customMetricName;
23  public $endDate;
24  public $groupByColumn;
25  public $headerText;
26  public $platformSource;
27  public $productReportPerspective;
28  public $savedColumnName;
29  public $startDate;
30
31  public function setColumnName($columnName)
32  {
33    $this->columnName = $columnName;
34  }
35  public function getColumnName()
36  {
37    return $this->columnName;
38  }
39  public function setCustomDimensionName($customDimensionName)
40  {
41    $this->customDimensionName = $customDimensionName;
42  }
43  public function getCustomDimensionName()
44  {
45    return $this->customDimensionName;
46  }
47  public function setCustomMetricName($customMetricName)
48  {
49    $this->customMetricName = $customMetricName;
50  }
51  public function getCustomMetricName()
52  {
53    return $this->customMetricName;
54  }
55  public function setEndDate($endDate)
56  {
57    $this->endDate = $endDate;
58  }
59  public function getEndDate()
60  {
61    return $this->endDate;
62  }
63  public function setGroupByColumn($groupByColumn)
64  {
65    $this->groupByColumn = $groupByColumn;
66  }
67  public function getGroupByColumn()
68  {
69    return $this->groupByColumn;
70  }
71  public function setHeaderText($headerText)
72  {
73    $this->headerText = $headerText;
74  }
75  public function getHeaderText()
76  {
77    return $this->headerText;
78  }
79  public function setPlatformSource($platformSource)
80  {
81    $this->platformSource = $platformSource;
82  }
83  public function getPlatformSource()
84  {
85    return $this->platformSource;
86  }
87  public function setProductReportPerspective($productReportPerspective)
88  {
89    $this->productReportPerspective = $productReportPerspective;
90  }
91  public function getProductReportPerspective()
92  {
93    return $this->productReportPerspective;
94  }
95  public function setSavedColumnName($savedColumnName)
96  {
97    $this->savedColumnName = $savedColumnName;
98  }
99  public function getSavedColumnName()
100  {
101    return $this->savedColumnName;
102  }
103  public function setStartDate($startDate)
104  {
105    $this->startDate = $startDate;
106  }
107  public function getStartDate()
108  {
109    return $this->startDate;
110  }
111}
112