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
Modifier and TypeMethodDescriptionintgetCap()Maximum number of events allowed during the time range by this cap.getKey()The key of a particular frequency cap.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.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
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.v18.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.v18.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.v18.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.
-