com.google.ads.googleads.v17.services.SearchGoogleAdsStreamResponseOrBuilder 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_service.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.services;
public interface SearchGoogleAdsStreamResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.services.SearchGoogleAdsStreamResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* The list of rows that matched the query.
*
*
* repeated .google.ads.googleads.v17.services.GoogleAdsRow results = 1;
*/
java.util.List
getResultsList();
/**
*
* The list of rows that matched the query.
*
*
* repeated .google.ads.googleads.v17.services.GoogleAdsRow results = 1;
*/
com.google.ads.googleads.v17.services.GoogleAdsRow getResults(int index);
/**
*
* The list of rows that matched the query.
*
*
* repeated .google.ads.googleads.v17.services.GoogleAdsRow results = 1;
*/
int getResultsCount();
/**
*
* The list of rows that matched the query.
*
*
* repeated .google.ads.googleads.v17.services.GoogleAdsRow results = 1;
*/
java.util.List extends com.google.ads.googleads.v17.services.GoogleAdsRowOrBuilder>
getResultsOrBuilderList();
/**
*
* The list of rows that matched the query.
*
*
* repeated .google.ads.googleads.v17.services.GoogleAdsRow results = 1;
*/
com.google.ads.googleads.v17.services.GoogleAdsRowOrBuilder getResultsOrBuilder(
int index);
/**
*
* FieldMask that represents what fields were requested by the user.
*
*
* .google.protobuf.FieldMask field_mask = 2;
* @return Whether the fieldMask field is set.
*/
boolean hasFieldMask();
/**
*
* FieldMask that represents what fields were requested by the user.
*
*
* .google.protobuf.FieldMask field_mask = 2;
* @return The fieldMask.
*/
com.google.protobuf.FieldMask getFieldMask();
/**
*
* FieldMask that represents what fields were requested by the user.
*
*
* .google.protobuf.FieldMask field_mask = 2;
*/
com.google.protobuf.FieldMaskOrBuilder getFieldMaskOrBuilder();
/**
*
* Summary row that contains summary of metrics in results.
* Summary of metrics means aggregation of metrics across all results,
* here aggregation could be sum, average, rate, etc.
*
*
* .google.ads.googleads.v17.services.GoogleAdsRow summary_row = 3;
* @return Whether the summaryRow field is set.
*/
boolean hasSummaryRow();
/**
*
* Summary row that contains summary of metrics in results.
* Summary of metrics means aggregation of metrics across all results,
* here aggregation could be sum, average, rate, etc.
*
*
* .google.ads.googleads.v17.services.GoogleAdsRow summary_row = 3;
* @return The summaryRow.
*/
com.google.ads.googleads.v17.services.GoogleAdsRow getSummaryRow();
/**
*
* Summary row that contains summary of metrics in results.
* Summary of metrics means aggregation of metrics across all results,
* here aggregation could be sum, average, rate, etc.
*
*
* .google.ads.googleads.v17.services.GoogleAdsRow summary_row = 3;
*/
com.google.ads.googleads.v17.services.GoogleAdsRowOrBuilder getSummaryRowOrBuilder();
/**
*
* The unique id of the request that is used for debugging purposes.
*
*
* string request_id = 4;
* @return The requestId.
*/
java.lang.String getRequestId();
/**
*
* The unique id of the request that is used for debugging purposes.
*
*
* string request_id = 4;
* @return The bytes for requestId.
*/
com.google.protobuf.ByteString
getRequestIdBytes();
/**
*
* The amount of resources consumed to serve the query.
* query_resource_consumption for the Summary row and non-Summary responses
* are returned separately in their respective rows.
* query_resource_consumption for non-Summary responses is returned in the
* final batch of results.
*
*
* int64 query_resource_consumption = 6;
* @return The queryResourceConsumption.
*/
long getQueryResourceConsumption();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy