Interface EffectiveFrequencyBreakdownOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EffectiveFrequencyBreakdown,EffectiveFrequencyBreakdown.Builder
public interface EffectiveFrequencyBreakdownOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetEffectiveFrequency()The effective frequency [1-10].longgetOnTargetReach()The number of unique people reached at least effective_frequency times that exactly matches the Targeting.longgetTotalReach()Total number of unique people reached at least effective_frequency times.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEffectiveFrequency
int getEffectiveFrequency()
The effective frequency [1-10].
int32 effective_frequency = 1;- Returns:
- The effectiveFrequency.
-
getOnTargetReach
long getOnTargetReach()
The number of unique people reached at least effective_frequency times that exactly matches the Targeting. Note that a minimum number of unique people must be reached in order for data to be reported. If the minimum number is not met, the on_target_reach value will be rounded to 0.
int64 on_target_reach = 2;- Returns:
- The onTargetReach.
-
getTotalReach
long getTotalReach()
Total number of unique people reached at least effective_frequency times. This includes people that may fall outside the specified Targeting. Note that a minimum number of unique people must be reached in order for data to be reported. If the minimum number is not met, the total_reach value will be rounded to 0.
int64 total_reach = 3;- Returns:
- The totalReach.
-
-