Interface ProductBiddingCategoryInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ProductBiddingCategoryInfo,ProductBiddingCategoryInfo.Builder
public interface ProductBiddingCategoryInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetCountryCode()Two-letter upper-case country code of the product bidding category.com.google.protobuf.ByteStringgetCountryCodeBytes()Two-letter upper-case country code of the product bidding category.longgetId()ID of the product bidding category.ProductBiddingCategoryLevelEnum.ProductBiddingCategoryLevelgetLevel()Level of the product bidding category.intgetLevelValue()Level of the product bidding category.booleanhasCountryCode()Two-letter upper-case country code of the product bidding category.booleanhasId()ID of the product bidding category.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasId
boolean hasId()
ID of the product bidding category. This ID is equivalent to the google_product_category ID as described in this article: https://support.google.com/merchants/answer/6324436
optional int64 id = 4;- Returns:
- Whether the id field is set.
-
getId
long getId()
ID of the product bidding category. This ID is equivalent to the google_product_category ID as described in this article: https://support.google.com/merchants/answer/6324436
optional int64 id = 4;- Returns:
- The id.
-
hasCountryCode
boolean hasCountryCode()
Two-letter upper-case country code of the product bidding category. It must match the campaign.shopping_setting.sales_country field.
optional string country_code = 5;- Returns:
- Whether the countryCode field is set.
-
getCountryCode
java.lang.String getCountryCode()
Two-letter upper-case country code of the product bidding category. It must match the campaign.shopping_setting.sales_country field.
optional string country_code = 5;- Returns:
- The countryCode.
-
getCountryCodeBytes
com.google.protobuf.ByteString getCountryCodeBytes()
Two-letter upper-case country code of the product bidding category. It must match the campaign.shopping_setting.sales_country field.
optional string country_code = 5;- Returns:
- The bytes for countryCode.
-
getLevelValue
int getLevelValue()
Level of the product bidding category.
.google.ads.googleads.v10.enums.ProductBiddingCategoryLevelEnum.ProductBiddingCategoryLevel level = 3;- Returns:
- The enum numeric value on the wire for level.
-
getLevel
ProductBiddingCategoryLevelEnum.ProductBiddingCategoryLevel getLevel()
Level of the product bidding category.
.google.ads.googleads.v10.enums.ProductBiddingCategoryLevelEnum.ProductBiddingCategoryLevel level = 3;- Returns:
- The level.
-
-