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.



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

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

Instance Attribute Details

#formatted_search_timeString

Corresponds to the JSON property formattedSearchTime

Returns:

  • (String)


683
684
685
# File 'generated/google/apis/customsearch_v1/classes.rb', line 683

def formatted_search_time
  @formatted_search_time
end

#formatted_total_resultsString

Corresponds to the JSON property formattedTotalResults

Returns:

  • (String)


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

def formatted_total_results
  @formatted_total_results
end

#search_timeFloat

Corresponds to the JSON property searchTime

Returns:

  • (Float)


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

def search_time
  @search_time
end

#total_resultsFixnum

Corresponds to the JSON property totalResults

Returns:

  • (Fixnum)


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

def total_results
  @total_results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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