BiddingInput
The BiddingInput object represents bidding configuration input for ad groups. It supports three types of bidding strategies.
¶ Properties
This object uses a oneOf structure with the following options:
| Property | Type | Description |
|---|---|---|
auto |
AutoBiddingInput | Automatic bidding configuration |
manual |
ManualBiddingInput | Manual bidding configuration |
goal_based |
GoalBasedBiddingInput | Goal-based bidding configuration |
¶ Usage
Only one of the bidding types should be specified:
{
"auto": {}
}
or
{
"manual": {
"bid_amount": {
"amount": "15000",
"currency": "USD"
}
}
}
or
{
"goal_based": {
"roas_goal": 2.5
}
}