Interface TargetRoasOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TargetRoas,TargetRoas.Builder
public interface TargetRoasOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetCpcBidCeilingMicros()Maximum bid limit that can be set by the bid strategy.longgetCpcBidFloorMicros()Minimum bid limit that can be set by the bid strategy.doublegetTargetRoas()Required.booleanhasCpcBidCeilingMicros()Maximum bid limit that can be set by the bid strategy.booleanhasCpcBidFloorMicros()Minimum bid limit that can be set by the bid strategy.booleanhasTargetRoas()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasTargetRoas
boolean hasTargetRoas()
Required. The desired revenue (based on conversion data) per unit of spend. Value must be between 0.01 and 1000.0, inclusive.
optional double target_roas = 4;- Returns:
- Whether the targetRoas field is set.
-
getTargetRoas
double getTargetRoas()
Required. The desired revenue (based on conversion data) per unit of spend. Value must be between 0.01 and 1000.0, inclusive.
optional double target_roas = 4;- Returns:
- The targetRoas.
-
hasCpcBidCeilingMicros
boolean hasCpcBidCeilingMicros()
Maximum bid limit that can be set by the bid strategy. The limit applies to all keywords managed by the strategy. This should only be set for portfolio bid strategies.
optional int64 cpc_bid_ceiling_micros = 5;- Returns:
- Whether the cpcBidCeilingMicros field is set.
-
getCpcBidCeilingMicros
long getCpcBidCeilingMicros()
Maximum bid limit that can be set by the bid strategy. The limit applies to all keywords managed by the strategy. This should only be set for portfolio bid strategies.
optional int64 cpc_bid_ceiling_micros = 5;- Returns:
- The cpcBidCeilingMicros.
-
hasCpcBidFloorMicros
boolean hasCpcBidFloorMicros()
Minimum bid limit that can be set by the bid strategy. The limit applies to all keywords managed by the strategy. This should only be set for portfolio bid strategies.
optional int64 cpc_bid_floor_micros = 6;- Returns:
- Whether the cpcBidFloorMicros field is set.
-
getCpcBidFloorMicros
long getCpcBidFloorMicros()
Minimum bid limit that can be set by the bid strategy. The limit applies to all keywords managed by the strategy. This should only be set for portfolio bid strategies.
optional int64 cpc_bid_floor_micros = 6;- Returns:
- The cpcBidFloorMicros.
-
-