Class: Google::Apis::CustomsearchV1::Search::Spelling

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

Overview

Spell correction information for a query.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Spelling

Returns a new instance of Spelling.



1385
1386
1387
# File 'lib/google/apis/customsearch_v1/classes.rb', line 1385

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

Instance Attribute Details

#corrected_queryString

The corrected query. Corresponds to the JSON property correctedQuery

Returns:

  • (String)


1378
1379
1380
# File 'lib/google/apis/customsearch_v1/classes.rb', line 1378

def corrected_query
  @corrected_query
end

#html_corrected_queryString

The corrected query, formatted in HTML. Corresponds to the JSON property htmlCorrectedQuery

Returns:

  • (String)


1383
1384
1385
# File 'lib/google/apis/customsearch_v1/classes.rb', line 1383

def html_corrected_query
  @html_corrected_query
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1390
1391
1392
1393
# File 'lib/google/apis/customsearch_v1/classes.rb', line 1390

def update!(**args)
  @corrected_query = args[:corrected_query] if args.key?(:corrected_query)
  @html_corrected_query = args[:html_corrected_query] if args.key?(:html_corrected_query)
end