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 18namespace Google\Service\Dfareporting; 19 20class CompatibleFields extends \Google\Model 21{ 22 protected $crossDimensionReachReportCompatibleFieldsType = CrossDimensionReachReportCompatibleFields::class; 23 protected $crossDimensionReachReportCompatibleFieldsDataType = ''; 24 protected $floodlightReportCompatibleFieldsType = FloodlightReportCompatibleFields::class; 25 protected $floodlightReportCompatibleFieldsDataType = ''; 26 /** 27 * @var string 28 */ 29 public $kind; 30 protected $pathAttributionReportCompatibleFieldsType = PathReportCompatibleFields::class; 31 protected $pathAttributionReportCompatibleFieldsDataType = ''; 32 protected $pathReportCompatibleFieldsType = PathReportCompatibleFields::class; 33 protected $pathReportCompatibleFieldsDataType = ''; 34 protected $pathToConversionReportCompatibleFieldsType = PathToConversionReportCompatibleFields::class; 35 protected $pathToConversionReportCompatibleFieldsDataType = ''; 36 protected $reachReportCompatibleFieldsType = ReachReportCompatibleFields::class; 37 protected $reachReportCompatibleFieldsDataType = ''; 38 protected $reportCompatibleFieldsType = ReportCompatibleFields::class; 39 protected $reportCompatibleFieldsDataType = ''; 40 41 /** 42 * @param CrossDimensionReachReportCompatibleFields 43 */ 44 public function setCrossDimensionReachReportCompatibleFields(CrossDimensionReachReportCompatibleFields $crossDimensionReachReportCompatibleFields) 45 { 46 $this->crossDimensionReachReportCompatibleFields = $crossDimensionReachReportCompatibleFields; 47 } 48 /** 49 * @return CrossDimensionReachReportCompatibleFields 50 */ 51 public function getCrossDimensionReachReportCompatibleFields() 52 { 53 return $this->crossDimensionReachReportCompatibleFields; 54 } 55 /** 56 * @param FloodlightReportCompatibleFields 57 */ 58 public function setFloodlightReportCompatibleFields(FloodlightReportCompatibleFields $floodlightReportCompatibleFields) 59 { 60 $this->floodlightReportCompatibleFields = $floodlightReportCompatibleFields; 61 } 62 /** 63 * @return FloodlightReportCompatibleFields 64 */ 65 public function getFloodlightReportCompatibleFields() 66 { 67 return $this->floodlightReportCompatibleFields; 68 } 69 /** 70 * @param string 71 */ 72 public function setKind($kind) 73 { 74 $this->kind = $kind; 75 } 76 /** 77 * @return string 78 */ 79 public function getKind() 80 { 81 return $this->kind; 82 } 83 /** 84 * @param PathReportCompatibleFields 85 */ 86 public function setPathAttributionReportCompatibleFields(PathReportCompatibleFields $pathAttributionReportCompatibleFields) 87 { 88 $this->pathAttributionReportCompatibleFields = $pathAttributionReportCompatibleFields; 89 } 90 /** 91 * @return PathReportCompatibleFields 92 */ 93 public function getPathAttributionReportCompatibleFields() 94 { 95 return $this->pathAttributionReportCompatibleFields; 96 } 97 /** 98 * @param PathReportCompatibleFields 99 */ 100 public function setPathReportCompatibleFields(PathReportCompatibleFields $pathReportCompatibleFields) 101 { 102 $this->pathReportCompatibleFields = $pathReportCompatibleFields; 103 } 104 /** 105 * @return PathReportCompatibleFields 106 */ 107 public function getPathReportCompatibleFields() 108 { 109 return $this->pathReportCompatibleFields; 110 } 111 /** 112 * @param PathToConversionReportCompatibleFields 113 */ 114 public function setPathToConversionReportCompatibleFields(PathToConversionReportCompatibleFields $pathToConversionReportCompatibleFields) 115 { 116 $this->pathToConversionReportCompatibleFields = $pathToConversionReportCompatibleFields; 117 } 118 /** 119 * @return PathToConversionReportCompatibleFields 120 */ 121 public function getPathToConversionReportCompatibleFields() 122 { 123 return $this->pathToConversionReportCompatibleFields; 124 } 125 /** 126 * @param ReachReportCompatibleFields 127 */ 128 public function setReachReportCompatibleFields(ReachReportCompatibleFields $reachReportCompatibleFields) 129 { 130 $this->reachReportCompatibleFields = $reachReportCompatibleFields; 131 } 132 /** 133 * @return ReachReportCompatibleFields 134 */ 135 public function getReachReportCompatibleFields() 136 { 137 return $this->reachReportCompatibleFields; 138 } 139 /** 140 * @param ReportCompatibleFields 141 */ 142 public function setReportCompatibleFields(ReportCompatibleFields $reportCompatibleFields) 143 { 144 $this->reportCompatibleFields = $reportCompatibleFields; 145 } 146 /** 147 * @return ReportCompatibleFields 148 */ 149 public function getReportCompatibleFields() 150 { 151 return $this->reportCompatibleFields; 152 } 153} 154 155// Adding a class alias for backwards compatibility with the previous class name. 156class_alias(CompatibleFields::class, 'Google_Service_Dfareporting_CompatibleFields'); 157