com.google.ads.googleads.v17.services.SearchGoogleAdsFieldsResponseOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-ads-stubs-v17 Show documentation
Show all versions of google-ads-stubs-v17 Show documentation
Stubs for GAAPI version google-ads-stubs-v17
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/ads/googleads/v17/services/google_ads_field_service.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.services;
public interface SearchGoogleAdsFieldsResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.services.SearchGoogleAdsFieldsResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* The list of fields that matched the query.
*
*
* repeated .google.ads.googleads.v17.resources.GoogleAdsField results = 1;
*/
java.util.List
getResultsList();
/**
*
* The list of fields that matched the query.
*
*
* repeated .google.ads.googleads.v17.resources.GoogleAdsField results = 1;
*/
com.google.ads.googleads.v17.resources.GoogleAdsField getResults(int index);
/**
*
* The list of fields that matched the query.
*
*
* repeated .google.ads.googleads.v17.resources.GoogleAdsField results = 1;
*/
int getResultsCount();
/**
*
* The list of fields that matched the query.
*
*
* repeated .google.ads.googleads.v17.resources.GoogleAdsField results = 1;
*/
java.util.List extends com.google.ads.googleads.v17.resources.GoogleAdsFieldOrBuilder>
getResultsOrBuilderList();
/**
*
* The list of fields that matched the query.
*
*
* repeated .google.ads.googleads.v17.resources.GoogleAdsField results = 1;
*/
com.google.ads.googleads.v17.resources.GoogleAdsFieldOrBuilder getResultsOrBuilder(
int index);
/**
*
* 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;
* @return The nextPageToken.
*/
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;
* @return The bytes for nextPageToken.
*/
com.google.protobuf.ByteString
getNextPageTokenBytes();
/**
*
* Total number of results that match the query ignoring the LIMIT clause.
*
*
* int64 total_results_count = 3;
* @return The totalResultsCount.
*/
long getTotalResultsCount();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy