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 longgetEffectiveCoviewReach()The number of users (including co-viewing users) reached for the associated effective_frequency value.intgetEffectiveFrequency()The effective frequency [1-10].longgetOnTargetEffectiveCoviewReach()The number of users (including co-viewing users) reached for the associated effective_frequency value within the specified plan demographic.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.booleanhasEffectiveCoviewReach()The number of users (including co-viewing users) reached for the associated effective_frequency value.booleanhasOnTargetEffectiveCoviewReach()The number of users (including co-viewing users) reached for the associated effective_frequency value within the specified plan demographic.-
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.
-
hasEffectiveCoviewReach
boolean hasEffectiveCoviewReach()
The number of users (including co-viewing users) reached for the associated effective_frequency value.
optional int64 effective_coview_reach = 4;- Returns:
- Whether the effectiveCoviewReach field is set.
-
getEffectiveCoviewReach
long getEffectiveCoviewReach()
The number of users (including co-viewing users) reached for the associated effective_frequency value.
optional int64 effective_coview_reach = 4;- Returns:
- The effectiveCoviewReach.
-
hasOnTargetEffectiveCoviewReach
boolean hasOnTargetEffectiveCoviewReach()
The number of users (including co-viewing users) reached for the associated effective_frequency value within the specified plan demographic.
optional int64 on_target_effective_coview_reach = 5;- Returns:
- Whether the onTargetEffectiveCoviewReach field is set.
-
getOnTargetEffectiveCoviewReach
long getOnTargetEffectiveCoviewReach()
The number of users (including co-viewing users) reached for the associated effective_frequency value within the specified plan demographic.
optional int64 on_target_effective_coview_reach = 5;- Returns:
- The onTargetEffectiveCoviewReach.
-
-