Interface ConversionAction.ValueSettingsOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getAlwaysUseDefaultValue()
      Controls whether the default value and default currency code are used in place of the value and currency code specified in conversion events for this conversion action.
      java.lang.String getDefaultCurrencyCode()
      The currency code to use when conversion events for this conversion action are sent with an invalid or missing currency code, or when this conversion action is configured to always use the default value.
      com.google.protobuf.ByteString getDefaultCurrencyCodeBytes()
      The currency code to use when conversion events for this conversion action are sent with an invalid or missing currency code, or when this conversion action is configured to always use the default value.
      double getDefaultValue()
      The value to use when conversion events for this conversion action are sent with an invalid, disallowed or missing value, or when this conversion action is configured to always use the default value.
      boolean hasAlwaysUseDefaultValue()
      Controls whether the default value and default currency code are used in place of the value and currency code specified in conversion events for this conversion action.
      boolean hasDefaultCurrencyCode()
      The currency code to use when conversion events for this conversion action are sent with an invalid or missing currency code, or when this conversion action is configured to always use the default value.
      boolean hasDefaultValue()
      The value to use when conversion events for this conversion action are sent with an invalid, disallowed or missing value, or when this conversion action is configured to always use the default value.
      • 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

      • hasDefaultValue

        boolean hasDefaultValue()
         The value to use when conversion events for this conversion action are
         sent with an invalid, disallowed or missing value, or when
         this conversion action is configured to always use the default value.
         
        optional double default_value = 4;
        Returns:
        Whether the defaultValue field is set.
      • getDefaultValue

        double getDefaultValue()
         The value to use when conversion events for this conversion action are
         sent with an invalid, disallowed or missing value, or when
         this conversion action is configured to always use the default value.
         
        optional double default_value = 4;
        Returns:
        The defaultValue.
      • hasDefaultCurrencyCode

        boolean hasDefaultCurrencyCode()
         The currency code to use when conversion events for this conversion
         action are sent with an invalid or missing currency code, or when this
         conversion action is configured to always use the default value.
         
        optional string default_currency_code = 5;
        Returns:
        Whether the defaultCurrencyCode field is set.
      • getDefaultCurrencyCode

        java.lang.String getDefaultCurrencyCode()
         The currency code to use when conversion events for this conversion
         action are sent with an invalid or missing currency code, or when this
         conversion action is configured to always use the default value.
         
        optional string default_currency_code = 5;
        Returns:
        The defaultCurrencyCode.
      • getDefaultCurrencyCodeBytes

        com.google.protobuf.ByteString getDefaultCurrencyCodeBytes()
         The currency code to use when conversion events for this conversion
         action are sent with an invalid or missing currency code, or when this
         conversion action is configured to always use the default value.
         
        optional string default_currency_code = 5;
        Returns:
        The bytes for defaultCurrencyCode.
      • hasAlwaysUseDefaultValue

        boolean hasAlwaysUseDefaultValue()
         Controls whether the default value and default currency code are used in
         place of the value and currency code specified in conversion events for
         this conversion action.
         
        optional bool always_use_default_value = 6;
        Returns:
        Whether the alwaysUseDefaultValue field is set.
      • getAlwaysUseDefaultValue

        boolean getAlwaysUseDefaultValue()
         Controls whether the default value and default currency code are used in
         place of the value and currency code specified in conversion events for
         this conversion action.
         
        optional bool always_use_default_value = 6;
        Returns:
        The alwaysUseDefaultValue.