Skip to content

Commit 8ee2646

Browse files
committed
Updated Doubleclicksearch.php
1 parent 468186e commit 8ee2646

File tree

1 file changed

+97
-127
lines changed

1 file changed

+97
-127
lines changed

src/Google/Service/Doubleclicksearch.php

Lines changed: 97 additions & 127 deletions
Original file line numberDiff line numberDiff line change
@@ -973,6 +973,98 @@ public function getStatisticsTimeZone()
973973
}
974974
}
975975

976+
class Google_Service_Doubleclicksearch_ReportApiColumnSpec extends Google_Model
977+
{
978+
public $columnName;
979+
public $customDimensionName;
980+
public $endDate;
981+
public $groupByColumn;
982+
public $headerText;
983+
public $platformSource;
984+
public $savedColumnName;
985+
public $startDate;
986+
987+
public function setColumnName($columnName)
988+
{
989+
$this->columnName = $columnName;
990+
}
991+
992+
public function getColumnName()
993+
{
994+
return $this->columnName;
995+
}
996+
997+
public function setCustomDimensionName($customDimensionName)
998+
{
999+
$this->customDimensionName = $customDimensionName;
1000+
}
1001+
1002+
public function getCustomDimensionName()
1003+
{
1004+
return $this->customDimensionName;
1005+
}
1006+
1007+
public function setEndDate($endDate)
1008+
{
1009+
$this->endDate = $endDate;
1010+
}
1011+
1012+
public function getEndDate()
1013+
{
1014+
return $this->endDate;
1015+
}
1016+
1017+
public function setGroupByColumn($groupByColumn)
1018+
{
1019+
$this->groupByColumn = $groupByColumn;
1020+
}
1021+
1022+
public function getGroupByColumn()
1023+
{
1024+
return $this->groupByColumn;
1025+
}
1026+
1027+
public function setHeaderText($headerText)
1028+
{
1029+
$this->headerText = $headerText;
1030+
}
1031+
1032+
public function getHeaderText()
1033+
{
1034+
return $this->headerText;
1035+
}
1036+
1037+
public function setPlatformSource($platformSource)
1038+
{
1039+
$this->platformSource = $platformSource;
1040+
}
1041+
1042+
public function getPlatformSource()
1043+
{
1044+
return $this->platformSource;
1045+
}
1046+
1047+
public function setSavedColumnName($savedColumnName)
1048+
{
1049+
$this->savedColumnName = $savedColumnName;
1050+
}
1051+
1052+
public function getSavedColumnName()
1053+
{
1054+
return $this->savedColumnName;
1055+
}
1056+
1057+
public function setStartDate($startDate)
1058+
{
1059+
$this->startDate = $startDate;
1060+
}
1061+
1062+
public function getStartDate()
1063+
{
1064+
return $this->startDate;
1065+
}
1066+
}
1067+
9761068
class Google_Service_Doubleclicksearch_ReportFiles extends Google_Model
9771069
{
9781070
public $byteCount;
@@ -1001,7 +1093,7 @@ public function getUrl()
10011093

10021094
class Google_Service_Doubleclicksearch_ReportRequest extends Google_Collection
10031095
{
1004-
protected $columnsType = 'Google_Service_Doubleclicksearch_ReportRequestColumns';
1096+
protected $columnsType = 'Google_Service_Doubleclicksearch_ReportApiColumnSpec';
10051097
protected $columnsDataType = 'array';
10061098
public $downloadFormat;
10071099
protected $filtersType = 'Google_Service_Doubleclicksearch_ReportRequestFilters';
@@ -1162,84 +1254,14 @@ public function getVerifySingleTimeZone()
11621254
}
11631255
}
11641256

1165-
class Google_Service_Doubleclicksearch_ReportRequestColumns extends Google_Model
1166-
{
1167-
public $columnName;
1168-
public $endDate;
1169-
public $groupByColumn;
1170-
public $headerText;
1171-
public $savedColumnName;
1172-
public $startDate;
1173-
1174-
public function setColumnName($columnName)
1175-
{
1176-
$this->columnName = $columnName;
1177-
}
1178-
1179-
public function getColumnName()
1180-
{
1181-
return $this->columnName;
1182-
}
1183-
1184-
public function setEndDate($endDate)
1185-
{
1186-
$this->endDate = $endDate;
1187-
}
1188-
1189-
public function getEndDate()
1190-
{
1191-
return $this->endDate;
1192-
}
1193-
1194-
public function setGroupByColumn($groupByColumn)
1195-
{
1196-
$this->groupByColumn = $groupByColumn;
1197-
}
1198-
1199-
public function getGroupByColumn()
1200-
{
1201-
return $this->groupByColumn;
1202-
}
1203-
1204-
public function setHeaderText($headerText)
1205-
{
1206-
$this->headerText = $headerText;
1207-
}
1208-
1209-
public function getHeaderText()
1210-
{
1211-
return $this->headerText;
1212-
}
1213-
1214-
public function setSavedColumnName($savedColumnName)
1215-
{
1216-
$this->savedColumnName = $savedColumnName;
1217-
}
1218-
1219-
public function getSavedColumnName()
1220-
{
1221-
return $this->savedColumnName;
1222-
}
1223-
1224-
public function setStartDate($startDate)
1225-
{
1226-
$this->startDate = $startDate;
1227-
}
1228-
1229-
public function getStartDate()
1230-
{
1231-
return $this->startDate;
1232-
}
1233-
}
1234-
12351257
class Google_Service_Doubleclicksearch_ReportRequestFilters extends Google_Collection
12361258
{
1237-
protected $columnType = 'Google_Service_Doubleclicksearch_ReportRequestFiltersColumn';
1259+
protected $columnType = 'Google_Service_Doubleclicksearch_ReportApiColumnSpec';
12381260
protected $columnDataType = '';
12391261
public $operator;
12401262
public $values;
12411263

1242-
public function setColumn(Google_Service_Doubleclicksearch_ReportRequestFiltersColumn $column)
1264+
public function setColumn(Google_Service_Doubleclicksearch_ReportApiColumnSpec $column)
12431265
{
12441266
$this->column = $column;
12451267
}
@@ -1270,39 +1292,13 @@ public function getValues()
12701292
}
12711293
}
12721294

1273-
class Google_Service_Doubleclicksearch_ReportRequestFiltersColumn extends Google_Model
1274-
{
1275-
public $columnName;
1276-
public $savedColumnName;
1277-
1278-
public function setColumnName($columnName)
1279-
{
1280-
$this->columnName = $columnName;
1281-
}
1282-
1283-
public function getColumnName()
1284-
{
1285-
return $this->columnName;
1286-
}
1287-
1288-
public function setSavedColumnName($savedColumnName)
1289-
{
1290-
$this->savedColumnName = $savedColumnName;
1291-
}
1292-
1293-
public function getSavedColumnName()
1294-
{
1295-
return $this->savedColumnName;
1296-
}
1297-
}
1298-
12991295
class Google_Service_Doubleclicksearch_ReportRequestOrderBy extends Google_Model
13001296
{
1301-
protected $columnType = 'Google_Service_Doubleclicksearch_ReportRequestOrderByColumn';
1297+
protected $columnType = 'Google_Service_Doubleclicksearch_ReportApiColumnSpec';
13021298
protected $columnDataType = '';
13031299
public $sortOrder;
13041300

1305-
public function setColumn(Google_Service_Doubleclicksearch_ReportRequestOrderByColumn $column)
1301+
public function setColumn(Google_Service_Doubleclicksearch_ReportApiColumnSpec $column)
13061302
{
13071303
$this->column = $column;
13081304
}
@@ -1323,32 +1319,6 @@ public function getSortOrder()
13231319
}
13241320
}
13251321

1326-
class Google_Service_Doubleclicksearch_ReportRequestOrderByColumn extends Google_Model
1327-
{
1328-
public $columnName;
1329-
public $savedColumnName;
1330-
1331-
public function setColumnName($columnName)
1332-
{
1333-
$this->columnName = $columnName;
1334-
}
1335-
1336-
public function getColumnName()
1337-
{
1338-
return $this->columnName;
1339-
}
1340-
1341-
public function setSavedColumnName($savedColumnName)
1342-
{
1343-
$this->savedColumnName = $savedColumnName;
1344-
}
1345-
1346-
public function getSavedColumnName()
1347-
{
1348-
return $this->savedColumnName;
1349-
}
1350-
}
1351-
13521322
class Google_Service_Doubleclicksearch_ReportRequestReportScope extends Google_Model
13531323
{
13541324
public $adGroupId;

0 commit comments

Comments
 (0)