Interface TargetCpaOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TargetCpa,TargetCpa.Builder
public interface TargetCpaOrBuilder 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.longgetTargetCpaMicros()Average CPA target.booleanhasCpcBidCeilingMicros()Maximum bid limit that can be set by the bid strategy.booleanhasCpcBidFloorMicros()Minimum bid limit that can be set by the bid strategy.booleanhasTargetCpaMicros()Average CPA target.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasTargetCpaMicros
boolean hasTargetCpaMicros()
Average CPA target. This target should be greater than or equal to minimum billable unit based on the currency for the account.
optional int64 target_cpa_micros = 4;- Returns:
- Whether the targetCpaMicros field is set.
-
getTargetCpaMicros
long getTargetCpaMicros()
Average CPA target. This target should be greater than or equal to minimum billable unit based on the currency for the account.
optional int64 target_cpa_micros = 4;- Returns:
- The targetCpaMicros.
-
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.
-
-