Interface SearchGoogleAdsFieldsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SearchGoogleAdsFieldsResponse,SearchGoogleAdsFieldsResponse.Builder
public interface SearchGoogleAdsFieldsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetNextPageToken()Pagination token used to retrieve the next page of results.com.google.protobuf.ByteStringgetNextPageTokenBytes()Pagination token used to retrieve the next page of results.GoogleAdsFieldgetResults(int index)The list of fields that matched the query.intgetResultsCount()The list of fields that matched the query.java.util.List<GoogleAdsField>getResultsList()The list of fields that matched the query.GoogleAdsFieldOrBuildergetResultsOrBuilder(int index)The list of fields that matched the query.java.util.List<? extends GoogleAdsFieldOrBuilder>getResultsOrBuilderList()The list of fields that matched the query.longgetTotalResultsCount()Total number of results that match the query ignoring the LIMIT clause.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getResultsList
java.util.List<GoogleAdsField> getResultsList()
The list of fields that matched the query.
repeated .google.ads.googleads.v10.resources.GoogleAdsField results = 1;
-
getResults
GoogleAdsField getResults(int index)
The list of fields that matched the query.
repeated .google.ads.googleads.v10.resources.GoogleAdsField results = 1;
-
getResultsCount
int getResultsCount()
The list of fields that matched the query.
repeated .google.ads.googleads.v10.resources.GoogleAdsField results = 1;
-
getResultsOrBuilderList
java.util.List<? extends GoogleAdsFieldOrBuilder> getResultsOrBuilderList()
The list of fields that matched the query.
repeated .google.ads.googleads.v10.resources.GoogleAdsField results = 1;
-
getResultsOrBuilder
GoogleAdsFieldOrBuilder getResultsOrBuilder(int index)
The list of fields that matched the query.
repeated .google.ads.googleads.v10.resources.GoogleAdsField results = 1;
-
getNextPageToken
java.lang.String getNextPageToken()
Pagination token used to retrieve the next page of results. Pass the content of this string as the `page_token` attribute of the next request. `next_page_token` is not returned for the last page.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Pagination token used to retrieve the next page of results. Pass the content of this string as the `page_token` attribute of the next request. `next_page_token` is not returned for the last page.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
getTotalResultsCount
long getTotalResultsCount()
Total number of results that match the query ignoring the LIMIT clause.
int64 total_results_count = 3;- Returns:
- The totalResultsCount.
-
-