Class: Google::Apis::CloudsearchV1::SourceResultCount

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb

Overview

Per source result count information.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SourceResultCount

Returns a new instance of SourceResultCount.



18668
18669
18670
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18668

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#has_more_resultsBoolean Also known as: has_more_results?

Whether there are more search results for this source. Corresponds to the JSON property hasMoreResults

Returns:

  • (Boolean)


18650
18651
18652
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18650

def has_more_results
  @has_more_results
end

#result_count_estimateFixnum

The estimated result count for this source. Corresponds to the JSON property resultCountEstimate

Returns:

  • (Fixnum)


18656
18657
18658
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18656

def result_count_estimate
  @result_count_estimate
end

#result_count_exactFixnum

The exact result count for this source. Corresponds to the JSON property resultCountExact

Returns:

  • (Fixnum)


18661
18662
18663
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18661

def result_count_exact
  @result_count_exact
end

#sourceGoogle::Apis::CloudsearchV1::Source

Defines sources for the suggest/search APIs. Corresponds to the JSON property source



18666
18667
18668
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18666

def source
  @source
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



18673
18674
18675
18676
18677
18678
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 18673

def update!(**args)
  @has_more_results = args[:has_more_results] if args.key?(:has_more_results)
  @result_count_estimate = args[:result_count_estimate] if args.key?(:result_count_estimate)
  @result_count_exact = args[:result_count_exact] if args.key?(:result_count_exact)
  @source = args[:source] if args.key?(:source)
end