📄 Source: BiddingStrategy.php
<?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.
*/
namespace Google\Service\DisplayVideo;
class BiddingStrategy extends \Google\Model
{
protected $demandGenBidType = DemandGenBiddingStrategy::class;
protected $demandGenBidDataType = '';
protected $fixedBidType = FixedBidStrategy::class;
protected $fixedBidDataType = '';
protected $maximizeSpendAutoBidType = MaximizeSpendBidStrategy::class;
protected $maximizeSpendAutoBidDataType = '';
protected $performanceGoalAutoBidType = PerformanceGoalBidStrategy::class;
protected $performanceGoalAutoBidDataType = '';
protected $youtubeAndPartnersBidType = YoutubeAndPartnersBiddingStrategy::class;
protected $youtubeAndPartnersBidDataType = '';
/**
* A bid strategy used by Demand Gen resources. It can only be used for a
* Demand Gen line item or ad group entity.
*
* @param DemandGenBiddingStrategy $demandGenBid
*/
public function setDemandGenBid(DemandGenBiddingStrategy $demandGenBid)
{
$this->demandGenBid = $demandGenBid;
}
/**
* @return DemandGenBiddingStrategy
*/
public function getDemandGenBid()
{
return $this->demandGenBid;
}
/**
* A strategy that uses a fixed bid price.
*
* @param FixedBidStrategy $fixedBid
*/
public function setFixedBid(FixedBidStrategy $fixedBid)
{
$this->fixedBid = $fixedBid;
}
/**
* @return FixedBidStrategy
*/
public function getFixedBid()
{
return $this->fixedBid;
}
/**
* A strategy that automatically adjusts the bid to optimize to your
* performance goal while spending the full budget. At insertion order level,
* the markup_type of line items cannot be set to
* `PARTNER_REVENUE_MODEL_MARKUP_TYPE_CPM`. In addition, the
* performance_goal_type value assigned to an insertion order determines the
* possible line_item_type values available for line items under that
* insertion order: * `BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_CPA`,
* `BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_CPC`, and
* `BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_AV_VIEWED` only allow for
* `LINE_ITEM_TYPE_DISPLAY_DEFAULT` or `LINE_ITEM_TYPE_VIDEO_DEFAULT` line
* items. * `BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_CIVA` and
* `BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_IVO_TEN` only allow for
* `LINE_ITEM_TYPE_VIDEO_DEFAULT` line items. *
* `BIDDING_STRATEGY_PERFORMANCE_GOAL_TYPE_REACH` only allows for
* `LINE_ITEM_TYPE_VIDEO_OVER_THE_TOP` line items.
*
* @param MaximizeSpendBidStrategy $maximizeSpendAutoBid
*/
public function setMaximizeSpendAutoBid(MaximizeSpendBidStrategy $maximizeSpendAutoBid)
{
$this->maximizeSpendAutoBid = $maximizeSpendAutoBid;
}
/**
* @return MaximizeSpendBidStrategy
*/
public function getMaximizeSpendAutoBid()
{
return $this->maximizeSpendAutoBid;
}
/**
* A strategy that automatically adjusts the bid to meet or beat a specified
* performance goal. It is to be used only for a line item entity.
*
* @param PerformanceGoalBidStrategy $performanceGoalAutoBid
*/
public function setPerformanceGoalAutoBid(PerformanceGoalBidStrategy $performanceGoalAutoBid)
{
$this->performanceGoalAutoBid = $performanceGoalAutoBid;
}
/**
* @return PerformanceGoalBidStrategy
*/
public function getPerformanceGoalAutoBid()
{
return $this->performanceGoalAutoBid;
}
/**
* A bid strategy used by YouTube and Partners resources. It can only be used
* for a YouTube and Partners line item or ad group entity.
*
* @param YoutubeAndPartnersBiddingStrategy $youtubeAndPartnersBid
*/
public function setYoutubeAndPartnersBid(YoutubeAndPartnersBiddingStrategy $youtubeAndPartnersBid)
{
$this->youtubeAndPartnersBid = $youtubeAndPartnersBid;
}
/**
* @return YoutubeAndPartnersBiddingStrategy
*/
public function getYoutubeAndPartnersBid()
{
return $this->youtubeAndPartnersBid;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(BiddingStrategy::class, 'Google_Service_DisplayVideo_BiddingStrategy');
← Back