Interface PageFeedAssetOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PageFeedAsset,PageFeedAsset.Builder
public interface PageFeedAssetOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetLabels(int index)Labels used to group the page urls.com.google.protobuf.ByteStringgetLabelsBytes(int index)Labels used to group the page urls.intgetLabelsCount()Labels used to group the page urls.java.util.List<java.lang.String>getLabelsList()Labels used to group the page urls.java.lang.StringgetPageUrl()Required.com.google.protobuf.ByteStringgetPageUrlBytes()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPageUrl
java.lang.String getPageUrl()
Required. The webpage that advertisers want to target.
string page_url = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The pageUrl.
-
getPageUrlBytes
com.google.protobuf.ByteString getPageUrlBytes()
Required. The webpage that advertisers want to target.
string page_url = 1 [(.google.api.field_behavior) = REQUIRED];- Returns:
- The bytes for pageUrl.
-
getLabelsList
java.util.List<java.lang.String> getLabelsList()
Labels used to group the page urls.
repeated string labels = 2;- Returns:
- A list containing the labels.
-
getLabelsCount
int getLabelsCount()
Labels used to group the page urls.
repeated string labels = 2;- Returns:
- The count of labels.
-
getLabels
java.lang.String getLabels(int index)
Labels used to group the page urls.
repeated string labels = 2;- Parameters:
index- The index of the element to return.- Returns:
- The labels at the given index.
-
getLabelsBytes
com.google.protobuf.ByteString getLabelsBytes(int index)
Labels used to group the page urls.
repeated string labels = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the labels at the given index.
-
-