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

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

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.



1382
1383
1384
# File 'generated/google/apis/customsearch_v1/classes.rb', line 1382

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

Instance Attribute Details

#corrected_queryString

The corrected query. Corresponds to the JSON property correctedQuery

Returns:

  • (String)


1375
1376
1377
# File 'generated/google/apis/customsearch_v1/classes.rb', line 1375

def corrected_query
  @corrected_query
end

#html_corrected_queryString

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

Returns:

  • (String)


1380
1381
1382
# File 'generated/google/apis/customsearch_v1/classes.rb', line 1380

def html_corrected_query
  @html_corrected_query
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1387
1388
1389
1390
# File 'generated/google/apis/customsearch_v1/classes.rb', line 1387

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