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_TechnologyTargeting extends Google_Collection
19{
20  protected $collection_key = 'platformTypes';
21  protected $browsersType = 'Google_Service_Dfareporting_Browser';
22  protected $browsersDataType = 'array';
23  protected $connectionTypesType = 'Google_Service_Dfareporting_ConnectionType';
24  protected $connectionTypesDataType = 'array';
25  protected $mobileCarriersType = 'Google_Service_Dfareporting_MobileCarrier';
26  protected $mobileCarriersDataType = 'array';
27  protected $operatingSystemVersionsType = 'Google_Service_Dfareporting_OperatingSystemVersion';
28  protected $operatingSystemVersionsDataType = 'array';
29  protected $operatingSystemsType = 'Google_Service_Dfareporting_OperatingSystem';
30  protected $operatingSystemsDataType = 'array';
31  protected $platformTypesType = 'Google_Service_Dfareporting_PlatformType';
32  protected $platformTypesDataType = 'array';
33
34  /**
35   * @param Google_Service_Dfareporting_Browser[]
36   */
37  public function setBrowsers($browsers)
38  {
39    $this->browsers = $browsers;
40  }
41  /**
42   * @return Google_Service_Dfareporting_Browser[]
43   */
44  public function getBrowsers()
45  {
46    return $this->browsers;
47  }
48  /**
49   * @param Google_Service_Dfareporting_ConnectionType[]
50   */
51  public function setConnectionTypes($connectionTypes)
52  {
53    $this->connectionTypes = $connectionTypes;
54  }
55  /**
56   * @return Google_Service_Dfareporting_ConnectionType[]
57   */
58  public function getConnectionTypes()
59  {
60    return $this->connectionTypes;
61  }
62  /**
63   * @param Google_Service_Dfareporting_MobileCarrier[]
64   */
65  public function setMobileCarriers($mobileCarriers)
66  {
67    $this->mobileCarriers = $mobileCarriers;
68  }
69  /**
70   * @return Google_Service_Dfareporting_MobileCarrier[]
71   */
72  public function getMobileCarriers()
73  {
74    return $this->mobileCarriers;
75  }
76  /**
77   * @param Google_Service_Dfareporting_OperatingSystemVersion[]
78   */
79  public function setOperatingSystemVersions($operatingSystemVersions)
80  {
81    $this->operatingSystemVersions = $operatingSystemVersions;
82  }
83  /**
84   * @return Google_Service_Dfareporting_OperatingSystemVersion[]
85   */
86  public function getOperatingSystemVersions()
87  {
88    return $this->operatingSystemVersions;
89  }
90  /**
91   * @param Google_Service_Dfareporting_OperatingSystem[]
92   */
93  public function setOperatingSystems($operatingSystems)
94  {
95    $this->operatingSystems = $operatingSystems;
96  }
97  /**
98   * @return Google_Service_Dfareporting_OperatingSystem[]
99   */
100  public function getOperatingSystems()
101  {
102    return $this->operatingSystems;
103  }
104  /**
105   * @param Google_Service_Dfareporting_PlatformType[]
106   */
107  public function setPlatformTypes($platformTypes)
108  {
109    $this->platformTypes = $platformTypes;
110  }
111  /**
112   * @return Google_Service_Dfareporting_PlatformType[]
113   */
114  public function getPlatformTypes()
115  {
116    return $this->platformTypes;
117  }
118}
119