Skip to content

Commit

Permalink
Merge pull request #75 from aleksander-sadecki/patch-1
Browse files Browse the repository at this point in the history
Add missing setter for bid strategy
  • Loading branch information
vladimanaev authored Nov 17, 2023
2 parents 353375a + e5da4c4 commit 0a0ac21
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@ public CampaignOperation setBidType(BidType bidType) {
return this;
}

public CampaignOperation setBidStrategy(CampaignBidStrategy bidStrategy) {
this.bidStrategy = bidStrategy;
return this;
}

public CampaignOperation setMarketingObjective(MarketingObjective marketingObjective) {
this.marketingObjective = marketingObjective;
return this;
Expand Down

0 comments on commit 0a0ac21

Please sign in to comment.