Interface ConversionTrackingSettingOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ConversionTrackingSetting,ConversionTrackingSetting.Builder
public interface ConversionTrackingSettingOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetConversionTrackingId()Output only.longgetCrossAccountConversionTrackingId()Output only.booleanhasConversionTrackingId()Output only.booleanhasCrossAccountConversionTrackingId()Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasConversionTrackingId
boolean hasConversionTrackingId()
Output only. The conversion tracking id used for this account. This id is automatically assigned after any conversion tracking feature is used. If the customer doesn't use conversion tracking, this is 0. This field is read-only.
optional int64 conversion_tracking_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- Whether the conversionTrackingId field is set.
-
getConversionTrackingId
long getConversionTrackingId()
Output only. The conversion tracking id used for this account. This id is automatically assigned after any conversion tracking feature is used. If the customer doesn't use conversion tracking, this is 0. This field is read-only.
optional int64 conversion_tracking_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The conversionTrackingId.
-
hasCrossAccountConversionTrackingId
boolean hasCrossAccountConversionTrackingId()
Output only. The conversion tracking id of the customer's manager. This is set when the customer is opted into cross account conversion tracking, and it overrides conversion_tracking_id. This field can only be managed through the Google Ads UI. This field is read-only.
optional int64 cross_account_conversion_tracking_id = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- Whether the crossAccountConversionTrackingId field is set.
-
getCrossAccountConversionTrackingId
long getCrossAccountConversionTrackingId()
Output only. The conversion tracking id of the customer's manager. This is set when the customer is opted into cross account conversion tracking, and it overrides conversion_tracking_id. This field can only be managed through the Google Ads UI. This field is read-only.
optional int64 cross_account_conversion_tracking_id = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The crossAccountConversionTrackingId.
-
-