Class: Google::Apis::CustomsearchV1::Search::Spelling
- Inherits:
-
Object
- Object
- Google::Apis::CustomsearchV1::Search::Spelling
- 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
-
#corrected_query ⇒ String
The corrected query.
-
#html_corrected_query ⇒ String
The corrected query, formatted in HTML.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Spelling
constructor
A new instance of Spelling.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_query ⇒ String
The corrected query.
Corresponds to the JSON property correctedQuery
1378 1379 1380 |
# File 'lib/google/apis/customsearch_v1/classes.rb', line 1378 def corrected_query @corrected_query end |
#html_corrected_query ⇒ String
The corrected query, formatted in HTML.
Corresponds to the JSON property htmlCorrectedQuery
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 |