AI-generated Key Takeaways
- 
          The SearchAudienceBidding object provides access to a search audience's bidding fields. 
- 
          You can clear, get, or set the bid modifier value for an audience using the provided methods. 
- 
          The bid modifier can be set to a value between 0.1 and 10.0. 
Methods:
| Member | Type | Description | 
|---|---|---|
| clearBidModifier() | void | Clears the bid modifier value. | 
| getBidModifier() | double | Returns the current bid modifier value. | 
| setBidModifier(modifier) | void | Sets the bid modifier value for this audience to the specified value. | 
clearBidModifier()
  Clears the bid modifier value.  Returns nothing.
getBidModifier()
  Returns the current bid modifier value.  Return values:
| Type | Description | 
|---|---|
| double | The current bid modifier value. | 
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:
| Name | Type | Description | 
|---|---|---|
| modifier | double | The new bid modifier value. |