Viewing file: TargetingValue.php (4.12 KB) -rwxrwxrwx Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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_AdExchangeBuyer_TargetingValue extends Google_Model { protected $creativeSizeValueType = 'Google_Service_AdExchangeBuyer_TargetingValueCreativeSize'; protected $creativeSizeValueDataType = ''; protected $dayPartTargetingValueType = 'Google_Service_AdExchangeBuyer_TargetingValueDayPartTargeting'; protected $dayPartTargetingValueDataType = ''; protected $demogAgeCriteriaValueType = 'Google_Service_AdExchangeBuyer_TargetingValueDemogAgeCriteria'; protected $demogAgeCriteriaValueDataType = ''; protected $demogGenderCriteriaValueType = 'Google_Service_AdExchangeBuyer_TargetingValueDemogGenderCriteria'; protected $demogGenderCriteriaValueDataType = ''; public $longValue; protected $requestPlatformTargetingValueType = 'Google_Service_AdExchangeBuyer_TargetingValueRequestPlatformTargeting'; protected $requestPlatformTargetingValueDataType = ''; public $stringValue;
/** * @param Google_Service_AdExchangeBuyer_TargetingValueCreativeSize */ public function setCreativeSizeValue(Google_Service_AdExchangeBuyer_TargetingValueCreativeSize $creativeSizeValue) { $this->creativeSizeValue = $creativeSizeValue; } /** * @return Google_Service_AdExchangeBuyer_TargetingValueCreativeSize */ public function getCreativeSizeValue() { return $this->creativeSizeValue; } /** * @param Google_Service_AdExchangeBuyer_TargetingValueDayPartTargeting */ public function setDayPartTargetingValue(Google_Service_AdExchangeBuyer_TargetingValueDayPartTargeting $dayPartTargetingValue) { $this->dayPartTargetingValue = $dayPartTargetingValue; } /** * @return Google_Service_AdExchangeBuyer_TargetingValueDayPartTargeting */ public function getDayPartTargetingValue() { return $this->dayPartTargetingValue; } /** * @param Google_Service_AdExchangeBuyer_TargetingValueDemogAgeCriteria */ public function setDemogAgeCriteriaValue(Google_Service_AdExchangeBuyer_TargetingValueDemogAgeCriteria $demogAgeCriteriaValue) { $this->demogAgeCriteriaValue = $demogAgeCriteriaValue; } /** * @return Google_Service_AdExchangeBuyer_TargetingValueDemogAgeCriteria */ public function getDemogAgeCriteriaValue() { return $this->demogAgeCriteriaValue; } /** * @param Google_Service_AdExchangeBuyer_TargetingValueDemogGenderCriteria */ public function setDemogGenderCriteriaValue(Google_Service_AdExchangeBuyer_TargetingValueDemogGenderCriteria $demogGenderCriteriaValue) { $this->demogGenderCriteriaValue = $demogGenderCriteriaValue; } /** * @return Google_Service_AdExchangeBuyer_TargetingValueDemogGenderCriteria */ public function getDemogGenderCriteriaValue() { return $this->demogGenderCriteriaValue; } public function setLongValue($longValue) { $this->longValue = $longValue; } public function getLongValue() { return $this->longValue; } /** * @param Google_Service_AdExchangeBuyer_TargetingValueRequestPlatformTargeting */ public function setRequestPlatformTargetingValue(Google_Service_AdExchangeBuyer_TargetingValueRequestPlatformTargeting $requestPlatformTargetingValue) { $this->requestPlatformTargetingValue = $requestPlatformTargetingValue; } /** * @return Google_Service_AdExchangeBuyer_TargetingValueRequestPlatformTargeting */ public function getRequestPlatformTargetingValue() { return $this->requestPlatformTargetingValue; } public function setStringValue($stringValue) { $this->stringValue = $stringValue; } public function getStringValue() { return $this->stringValue; } }
|