Interface SearchSettingsOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
SearchSettings, SearchSettings.Builder

public interface SearchSettingsOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    If true, results will be excluded from the response.
    boolean
    If true, summary row will be included in the response and sent in a response by itself after all other query results are returned.
    boolean
    If true, the total number of results that match the query ignoring the LIMIT clause will be included in the response.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getOmitResults

      boolean getOmitResults()
       If true, results will be excluded from the response. Otherwise, results
       will be returned.
       Default is false.
       
      bool omit_results = 1;
      Returns:
      The omitResults.
    • getReturnSummaryRow

      boolean getReturnSummaryRow()
       If true, summary row will be included in the response and sent in a
       response by itself after all other query results are returned.
       Default is false.
       
      bool return_summary_row = 2;
      Returns:
      The returnSummaryRow.
    • getReturnTotalResultsCount

      boolean getReturnTotalResultsCount()
       If true, the total number of results that match the query ignoring the
       LIMIT clause will be included in the response.
       Default is false.
       
      bool return_total_results_count = 3;
      Returns:
      The returnTotalResultsCount.