Interface ConversionAction.ValueSettingsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ConversionAction.ValueSettings,ConversionAction.ValueSettings.Builder
- Enclosing class:
- ConversionAction
public static interface ConversionAction.ValueSettingsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetAlwaysUseDefaultValue()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.StringgetDefaultCurrencyCode()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.ByteStringgetDefaultCurrencyCodeBytes()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.doublegetDefaultValue()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.booleanhasAlwaysUseDefaultValue()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.booleanhasDefaultCurrencyCode()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.booleanhasDefaultValue()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.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.
-
-