Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 11 additions & 6 deletions src/RealTimeBidding/PretargetingConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,12 @@ class PretargetingConfig extends \Google\Collection
public const STATE_SUSPENDED = 'SUSPENDED';
protected $collection_key = 'invalidGeoIds';
/**
* Targeting modes included by this config. A bid request must allow all the
* specified targeting modes. An unset value allows all bid requests to be
* sent, regardless of which targeting modes they allow.
* Deprecated: The value of this field no longer has any effect. Targeting
* modes included by this config. A bid request must allow all the specified
* targeting modes. An unset value allows all bid requests to be sent,
* regardless of which targeting modes they allow.
*
* @deprecated
* @var string[]
*/
public $allowedUserTargetingModes;
Expand Down Expand Up @@ -189,17 +191,20 @@ class PretargetingConfig extends \Google\Collection
protected $webTargetingDataType = '';

/**
* Targeting modes included by this config. A bid request must allow all the
* specified targeting modes. An unset value allows all bid requests to be
* sent, regardless of which targeting modes they allow.
* Deprecated: The value of this field no longer has any effect. Targeting
* modes included by this config. A bid request must allow all the specified
* targeting modes. An unset value allows all bid requests to be sent,
* regardless of which targeting modes they allow.
*
* @deprecated
* @param string[] $allowedUserTargetingModes
*/
public function setAllowedUserTargetingModes($allowedUserTargetingModes)
{
$this->allowedUserTargetingModes = $allowedUserTargetingModes;
}
/**
* @deprecated
* @return string[]
*/
public function getAllowedUserTargetingModes()
Expand Down
Loading