Interface ExternalAttributionDataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExternalAttributionData,ExternalAttributionData.Builder
public interface ExternalAttributionDataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doublegetExternalAttributionCredit()Represents the fraction of the conversion that is attributed to the Google Ads click.java.lang.StringgetExternalAttributionModel()Specifies the attribution model name.com.google.protobuf.ByteStringgetExternalAttributionModelBytes()Specifies the attribution model name.booleanhasExternalAttributionCredit()Represents the fraction of the conversion that is attributed to the Google Ads click.booleanhasExternalAttributionModel()Specifies the attribution model name.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasExternalAttributionCredit
boolean hasExternalAttributionCredit()
Represents the fraction of the conversion that is attributed to the Google Ads click.
optional double external_attribution_credit = 3;- Returns:
- Whether the externalAttributionCredit field is set.
-
getExternalAttributionCredit
double getExternalAttributionCredit()
Represents the fraction of the conversion that is attributed to the Google Ads click.
optional double external_attribution_credit = 3;- Returns:
- The externalAttributionCredit.
-
hasExternalAttributionModel
boolean hasExternalAttributionModel()
Specifies the attribution model name.
optional string external_attribution_model = 4;- Returns:
- Whether the externalAttributionModel field is set.
-
getExternalAttributionModel
java.lang.String getExternalAttributionModel()
Specifies the attribution model name.
optional string external_attribution_model = 4;- Returns:
- The externalAttributionModel.
-
getExternalAttributionModelBytes
com.google.protobuf.ByteString getExternalAttributionModelBytes()
Specifies the attribution model name.
optional string external_attribution_model = 4;- Returns:
- The bytes for externalAttributionModel.
-
-