Interface FrequencyCapEntryOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FrequencyCapEntry,FrequencyCapEntry.Builder
public interface FrequencyCapEntryOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetCap()Maximum number of events allowed during the time range by this cap.FrequencyCapKeygetKey()The key of a particular frequency cap.FrequencyCapKeyOrBuildergetKeyOrBuilder()The key of a particular frequency cap.booleanhasCap()Maximum number of events allowed during the time range by this cap.booleanhasKey()The key of a particular frequency cap.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasKey
boolean hasKey()
The key of a particular frequency cap. There can be no more than one frequency cap with the same key.
.google.ads.googleads.v10.common.FrequencyCapKey key = 1;- Returns:
- Whether the key field is set.
-
getKey
FrequencyCapKey getKey()
The key of a particular frequency cap. There can be no more than one frequency cap with the same key.
.google.ads.googleads.v10.common.FrequencyCapKey key = 1;- Returns:
- The key.
-
getKeyOrBuilder
FrequencyCapKeyOrBuilder getKeyOrBuilder()
The key of a particular frequency cap. There can be no more than one frequency cap with the same key.
.google.ads.googleads.v10.common.FrequencyCapKey key = 1;
-
hasCap
boolean hasCap()
Maximum number of events allowed during the time range by this cap.
optional int32 cap = 3;- Returns:
- Whether the cap field is set.
-
getCap
int getCap()
Maximum number of events allowed during the time range by this cap.
optional int32 cap = 3;- Returns:
- The cap.
-
-