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_PathToConversionReportCompatibleFields extends Google_Collection
19{
20  protected $collection_key = 'perInteractionDimensions';
21  protected $conversionDimensionsType = 'Google_Service_Dfareporting_Dimension';
22  protected $conversionDimensionsDataType = 'array';
23  protected $customFloodlightVariablesType = 'Google_Service_Dfareporting_Dimension';
24  protected $customFloodlightVariablesDataType = 'array';
25  public $kind;
26  protected $metricsType = 'Google_Service_Dfareporting_Metric';
27  protected $metricsDataType = 'array';
28  protected $perInteractionDimensionsType = 'Google_Service_Dfareporting_Dimension';
29  protected $perInteractionDimensionsDataType = 'array';
30
31  /**
32   * @param Google_Service_Dfareporting_Dimension[]
33   */
34  public function setConversionDimensions($conversionDimensions)
35  {
36    $this->conversionDimensions = $conversionDimensions;
37  }
38  /**
39   * @return Google_Service_Dfareporting_Dimension[]
40   */
41  public function getConversionDimensions()
42  {
43    return $this->conversionDimensions;
44  }
45  /**
46   * @param Google_Service_Dfareporting_Dimension[]
47   */
48  public function setCustomFloodlightVariables($customFloodlightVariables)
49  {
50    $this->customFloodlightVariables = $customFloodlightVariables;
51  }
52  /**
53   * @return Google_Service_Dfareporting_Dimension[]
54   */
55  public function getCustomFloodlightVariables()
56  {
57    return $this->customFloodlightVariables;
58  }
59  public function setKind($kind)
60  {
61    $this->kind = $kind;
62  }
63  public function getKind()
64  {
65    return $this->kind;
66  }
67  /**
68   * @param Google_Service_Dfareporting_Metric[]
69   */
70  public function setMetrics($metrics)
71  {
72    $this->metrics = $metrics;
73  }
74  /**
75   * @return Google_Service_Dfareporting_Metric[]
76   */
77  public function getMetrics()
78  {
79    return $this->metrics;
80  }
81  /**
82   * @param Google_Service_Dfareporting_Dimension[]
83   */
84  public function setPerInteractionDimensions($perInteractionDimensions)
85  {
86    $this->perInteractionDimensions = $perInteractionDimensions;
87  }
88  /**
89   * @return Google_Service_Dfareporting_Dimension[]
90   */
91  public function getPerInteractionDimensions()
92  {
93    return $this->perInteractionDimensions;
94  }
95}
96