當前位置: 首頁>>代碼示例>>PHP>>正文


PHP BiddingScheme類代碼示例

本文整理匯總了PHP中BiddingScheme的典型用法代碼示例。如果您正苦於以下問題:PHP BiddingScheme類的具體用法?PHP BiddingScheme怎麽用?PHP BiddingScheme使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了BiddingScheme類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 public function __construct($pricingMode = null, $bidType = null, $BiddingSchemeType = null)
 {
     parent::__construct();
     $this->pricingMode = $pricingMode;
     $this->bidType = $bidType;
     $this->BiddingSchemeType = $BiddingSchemeType;
 }
開發者ID:sonicgd,項目名稱:google-adwords-api-light,代碼行數:7,代碼來源:ConversionOptimizerBiddingScheme.php

示例2: __construct

 public function __construct($bidCeiling = null, $spendTarget = null, $BiddingSchemeType = null)
 {
     parent::__construct();
     $this->bidCeiling = $bidCeiling;
     $this->spendTarget = $spendTarget;
     $this->BiddingSchemeType = $BiddingSchemeType;
 }
開發者ID:anton-github,項目名稱:google-adwords-api-light,代碼行數:7,代碼來源:TargetSpendBiddingScheme.php

示例3: __construct

 public function __construct($bidCeiling = null, $enhancedCpcEnabled = null, $BiddingSchemeType = null)
 {
     parent::__construct();
     $this->bidCeiling = $bidCeiling;
     $this->enhancedCpcEnabled = $enhancedCpcEnabled;
     $this->BiddingSchemeType = $BiddingSchemeType;
 }
開發者ID:nediam,項目名稱:adwords-lib,代碼行數:7,代碼來源:BudgetOptimizerBiddingScheme.php

示例4: __construct

 public function __construct($targetRoas = null, $bidCeiling = null, $bidFloor = null, $BiddingSchemeType = null)
 {
     parent::__construct();
     $this->targetRoas = $targetRoas;
     $this->bidCeiling = $bidCeiling;
     $this->bidFloor = $bidFloor;
     $this->BiddingSchemeType = $BiddingSchemeType;
 }
開發者ID:anton-github,項目名稱:google-adwords-api-light,代碼行數:8,代碼來源:TargetRoasBiddingScheme.php

示例5: __construct

 public function __construct($targetCpa = null, $maxCpcBidCeiling = null, $maxCpcBidFloor = null, $BiddingSchemeType = null)
 {
     parent::__construct();
     $this->targetCpa = $targetCpa;
     $this->maxCpcBidCeiling = $maxCpcBidCeiling;
     $this->maxCpcBidFloor = $maxCpcBidFloor;
     $this->BiddingSchemeType = $BiddingSchemeType;
 }
開發者ID:sonicgd,項目名稱:google-adwords-api-light,代碼行數:8,代碼來源:TargetCpaBiddingScheme.php

示例6: __construct

 public function __construct($targetOutrankShare = null, $competitorDomain = null, $maxCpcBidCeiling = null, $bidChangesForRaisesOnly = null, $raiseBidWhenLowQualityScore = null, $BiddingSchemeType = null)
 {
     parent::__construct();
     $this->targetOutrankShare = $targetOutrankShare;
     $this->competitorDomain = $competitorDomain;
     $this->maxCpcBidCeiling = $maxCpcBidCeiling;
     $this->bidChangesForRaisesOnly = $bidChangesForRaisesOnly;
     $this->raiseBidWhenLowQualityScore = $raiseBidWhenLowQualityScore;
     $this->BiddingSchemeType = $BiddingSchemeType;
 }
開發者ID:nediam,項目名稱:adwords-lib,代碼行數:10,代碼來源:TargetOutrankShareBiddingScheme.php

示例7: __construct

 public function __construct($strategyGoal = null, $bidCeiling = null, $bidModifier = null, $bidChangesForRaisesOnly = null, $raiseBidWhenBudgetConstrained = null, $raiseBidWhenLowQualityScore = null, $BiddingSchemeType = null)
 {
     parent::__construct();
     $this->strategyGoal = $strategyGoal;
     $this->bidCeiling = $bidCeiling;
     $this->bidModifier = $bidModifier;
     $this->bidChangesForRaisesOnly = $bidChangesForRaisesOnly;
     $this->raiseBidWhenBudgetConstrained = $raiseBidWhenBudgetConstrained;
     $this->raiseBidWhenLowQualityScore = $raiseBidWhenLowQualityScore;
     $this->BiddingSchemeType = $BiddingSchemeType;
 }
開發者ID:sonicgd,項目名稱:google-adwords-api-light,代碼行數:11,代碼來源:PageOnePromotedBiddingScheme.php

示例8: __construct

 public function __construct($activeViewCpmEnabled = null, $BiddingSchemeType = null)
 {
     parent::__construct();
     $this->activeViewCpmEnabled = $activeViewCpmEnabled;
     $this->BiddingSchemeType = $BiddingSchemeType;
 }
開發者ID:nediam,項目名稱:adwords-lib,代碼行數:6,代碼來源:ManualCpmBiddingScheme.php

示例9: __construct

 public function __construct($BiddingSchemeType = null)
 {
     parent::__construct();
     $this->BiddingSchemeType = $BiddingSchemeType;
 }
開發者ID:sonicgd,項目名稱:google-adwords-api-light,代碼行數:5,代碼來源:EnhancedCpcBiddingScheme.php


注:本文中的BiddingScheme類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。