Interface CpvBidSimulationPointOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CpvBidSimulationPoint,CpvBidSimulationPoint.Builder
public interface CpvBidSimulationPointOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetCostMicros()Projected cost in micros.longgetCpvBidMicros()The simulated CPV bid upon which projected metrics are based.longgetImpressions()Projected number of impressions.longgetViews()Projected number of views.booleanhasCostMicros()Projected cost in micros.booleanhasCpvBidMicros()The simulated CPV bid upon which projected metrics are based.booleanhasImpressions()Projected number of impressions.booleanhasViews()Projected number of views.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasCpvBidMicros
boolean hasCpvBidMicros()
The simulated CPV bid upon which projected metrics are based.
optional int64 cpv_bid_micros = 5;- Returns:
- Whether the cpvBidMicros field is set.
-
getCpvBidMicros
long getCpvBidMicros()
The simulated CPV bid upon which projected metrics are based.
optional int64 cpv_bid_micros = 5;- Returns:
- The cpvBidMicros.
-
hasCostMicros
boolean hasCostMicros()
Projected cost in micros.
optional int64 cost_micros = 6;- Returns:
- Whether the costMicros field is set.
-
getCostMicros
long getCostMicros()
Projected cost in micros.
optional int64 cost_micros = 6;- Returns:
- The costMicros.
-
hasImpressions
boolean hasImpressions()
Projected number of impressions.
optional int64 impressions = 7;- Returns:
- Whether the impressions field is set.
-
getImpressions
long getImpressions()
Projected number of impressions.
optional int64 impressions = 7;- Returns:
- The impressions.
-
hasViews
boolean hasViews()
Projected number of views.
optional int64 views = 8;- Returns:
- Whether the views field is set.
-
getViews
long getViews()
Projected number of views.
optional int64 views = 8;- Returns:
- The views.
-
-