Interface KeywordInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
KeywordInfo,KeywordInfo.Builder
public interface KeywordInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KeywordMatchTypeEnum.KeywordMatchTypegetMatchType()The match type of the keyword.intgetMatchTypeValue()The match type of the keyword.java.lang.StringgetText()The text of the keyword (at most 80 characters and 10 words).com.google.protobuf.ByteStringgetTextBytes()The text of the keyword (at most 80 characters and 10 words).booleanhasText()The text of the keyword (at most 80 characters and 10 words).-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasText
boolean hasText()
The text of the keyword (at most 80 characters and 10 words).
optional string text = 3;- Returns:
- Whether the text field is set.
-
getText
java.lang.String getText()
The text of the keyword (at most 80 characters and 10 words).
optional string text = 3;- Returns:
- The text.
-
getTextBytes
com.google.protobuf.ByteString getTextBytes()
The text of the keyword (at most 80 characters and 10 words).
optional string text = 3;- Returns:
- The bytes for text.
-
getMatchTypeValue
int getMatchTypeValue()
The match type of the keyword.
.google.ads.googleads.v10.enums.KeywordMatchTypeEnum.KeywordMatchType match_type = 2;- Returns:
- The enum numeric value on the wire for matchType.
-
getMatchType
KeywordMatchTypeEnum.KeywordMatchType getMatchType()
The match type of the keyword.
.google.ads.googleads.v10.enums.KeywordMatchTypeEnum.KeywordMatchType match_type = 2;- Returns:
- The matchType.
-
-