AdsApp.SearchAudienceBidding
Stay organized with collections
Save and categorize content based on your preferences.
Provides access to a search audience's bidding fields. Methods:
clearBidModifier()
Clears the bid modifier value. Returns nothing.
getBidModifier()
Returns the current bid modifier value. Return values:
setBidModifier(modifier)
Sets the bid modifier value for this audience to the specified value. The bid modifier is a multiplier applied to the audience's bids, with an
acceptable range from 0.1
(a 90%
decrease) to 10.0
(a 900%
increase).
For more information about bid modifiers please see the Google Ads Help
Center article
.
Returns nothing.
Arguments:
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License
, and code samples are licensed under the Apache 2.0 License
. For details, see the Google Developers Site Policies
. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-09-03 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-09-03 UTC."],[[["\u003cp\u003eAllows access to and management of bid modifiers for search audiences.\u003c/p\u003e\n"],["\u003cp\u003eProvides methods to clear, retrieve, and set bid modifier values.\u003c/p\u003e\n"],["\u003cp\u003eBid modifiers can be adjusted within a range of 0.1 to 10.0, representing a decrease of 90% to an increase of 900% respectively.\u003c/p\u003e\n"]]],[],null,["# AdsApp.SearchAudienceBidding\n\nProvides access to a search audience's bidding fields.\n\n### Methods:\n\n| Member | Type | Description |\n|------------------------------------------------------|----------|-----------------------------------------------------------------------|\n| [clearBidModifier()](#clearBidModifier) | `void` | Clears the bid modifier value. |\n| [getBidModifier()](#getBidModifier) | `double` | Returns the current bid modifier value. |\n| [setBidModifier(modifier)](#setBidModifier_modifier) | `void` | Sets the bid modifier value for this audience to the specified value. |\n\n`clearBidModifier()`\n--------------------\n\nClears the bid modifier value.\n\nReturns nothing.\n\n`getBidModifier()`\n------------------\n\nReturns the current bid modifier value.\n\n### Return values:\n\n| Type | Description |\n|----------|---------------------------------|\n| `double` | The current bid modifier value. |\n\n`setBidModifier(modifier)`\n--------------------------\n\nSets the bid modifier value for this audience to the specified value.\n\nThe bid modifier is a multiplier applied to the audience's bids, with an\nacceptable range from `0.1` (a `90%` decrease) to\n`10.0` (a `900%` increase).\n\nFor more information about bid modifiers please see the [Google Ads Help\nCenter article](//support.google.com/google-ads/answer/2732132).\n\nReturns nothing.\n\n### Arguments:\n\n| Name | Type | Description |\n|----------|----------|-----------------------------|\n| modifier | `double` | The new bid modifier value. |"]]