123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <?php
- /*
- * Copyright 2014 Google Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
-
- class Google_Service_Dfareporting_GeoTargeting extends Google_Collection
- {
- protected $collection_key = 'regions';
- protected $citiesType = 'Google_Service_Dfareporting_City';
- protected $citiesDataType = 'array';
- protected $countriesType = 'Google_Service_Dfareporting_Country';
- protected $countriesDataType = 'array';
- public $excludeCountries;
- protected $metrosType = 'Google_Service_Dfareporting_Metro';
- protected $metrosDataType = 'array';
- protected $postalCodesType = 'Google_Service_Dfareporting_PostalCode';
- protected $postalCodesDataType = 'array';
- protected $regionsType = 'Google_Service_Dfareporting_Region';
- protected $regionsDataType = 'array';
-
- /**
- * @param Google_Service_Dfareporting_City
- */
- public function setCities($cities)
- {
- $this->cities = $cities;
- }
- /**
- * @return Google_Service_Dfareporting_City
- */
- public function getCities()
- {
- return $this->cities;
- }
- /**
- * @param Google_Service_Dfareporting_Country
- */
- public function setCountries($countries)
- {
- $this->countries = $countries;
- }
- /**
- * @return Google_Service_Dfareporting_Country
- */
- public function getCountries()
- {
- return $this->countries;
- }
- public function setExcludeCountries($excludeCountries)
- {
- $this->excludeCountries = $excludeCountries;
- }
- public function getExcludeCountries()
- {
- return $this->excludeCountries;
- }
- /**
- * @param Google_Service_Dfareporting_Metro
- */
- public function setMetros($metros)
- {
- $this->metros = $metros;
- }
- /**
- * @return Google_Service_Dfareporting_Metro
- */
- public function getMetros()
- {
- return $this->metros;
- }
- /**
- * @param Google_Service_Dfareporting_PostalCode
- */
- public function setPostalCodes($postalCodes)
- {
- $this->postalCodes = $postalCodes;
- }
- /**
- * @return Google_Service_Dfareporting_PostalCode
- */
- public function getPostalCodes()
- {
- return $this->postalCodes;
- }
- /**
- * @param Google_Service_Dfareporting_Region
- */
- public function setRegions($regions)
- {
- $this->regions = $regions;
- }
- /**
- * @return Google_Service_Dfareporting_Region
- */
- public function getRegions()
- {
- return $this->regions;
- }
- }
|