Class: Google::Apis::CustomsearchV1::Search::SearchInformation

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SearchInformation

Returns a new instance of SearchInformation.



706
707
708
# File 'generated/google/apis/customsearch_v1/classes.rb', line 706

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

Instance Attribute Details

#formatted_search_timeString

Corresponds to the JSON property formattedSearchTime

Returns:

  • (String)


689
690
691
# File 'generated/google/apis/customsearch_v1/classes.rb', line 689

def formatted_search_time
  @formatted_search_time
end

#formatted_total_resultsString

Corresponds to the JSON property formattedTotalResults

Returns:

  • (String)


694
695
696
# File 'generated/google/apis/customsearch_v1/classes.rb', line 694

def formatted_total_results
  @formatted_total_results
end

#search_timeFloat

Corresponds to the JSON property searchTime

Returns:

  • (Float)


699
700
701
# File 'generated/google/apis/customsearch_v1/classes.rb', line 699

def search_time
  @search_time
end

#total_resultsString

Corresponds to the JSON property totalResults

Returns:

  • (String)


704
705
706
# File 'generated/google/apis/customsearch_v1/classes.rb', line 704

def total_results
  @total_results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



711
712
713
714
715
716
# File 'generated/google/apis/customsearch_v1/classes.rb', line 711

def update!(**args)
  @formatted_search_time = args[:formatted_search_time] if args.key?(:formatted_search_time)
  @formatted_total_results = args[:formatted_total_results] if args.key?(:formatted_total_results)
  @search_time = args[:search_time] if args.key?(:search_time)
  @total_results = args[:total_results] if args.key?(:total_results)
end