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
      int getCap()
      Maximum number of events allowed during the time range by this cap.
      FrequencyCapKey getKey()
      The key of a particular frequency cap.
      FrequencyCapKeyOrBuilder getKeyOrBuilder()
      The key of a particular frequency cap.
      boolean hasCap()
      Maximum number of events allowed during the time range by this cap.
      boolean hasKey()
      The key of a particular frequency cap.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • 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.