Class: Google::Apis::JobsV4::SpellingCorrection
- Inherits:
-
Object
- Object
- Google::Apis::JobsV4::SpellingCorrection
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/jobs_v4/classes.rb,
lib/google/apis/jobs_v4/representations.rb,
lib/google/apis/jobs_v4/representations.rb
Overview
Spell check result.
Instance Attribute Summary collapse
-
#corrected ⇒ Boolean
(also: #corrected?)
Indicates if the query was corrected by the spell checker.
-
#corrected_html ⇒ String
Corrected output with html tags to highlight the corrected words.
-
#corrected_text ⇒ String
Correction output consisting of the corrected keyword string.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SpellingCorrection
constructor
A new instance of SpellingCorrection.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SpellingCorrection
Returns a new instance of SpellingCorrection.
2598 2599 2600 |
# File 'lib/google/apis/jobs_v4/classes.rb', line 2598 def initialize(**args) update!(**args) end |
Instance Attribute Details
#corrected ⇒ Boolean Also known as: corrected?
Indicates if the query was corrected by the spell checker.
Corresponds to the JSON property corrected
2581 2582 2583 |
# File 'lib/google/apis/jobs_v4/classes.rb', line 2581 def corrected @corrected end |
#corrected_html ⇒ String
Corrected output with html tags to highlight the corrected words. Corrected
words are called out with the "..." html tags. For example, the user input
query is "software enginear", where the second word, "enginear," is incorrect.
It should be "engineer". When spelling correction is enabled, this value is "
software engineer".
Corresponds to the JSON property correctedHtml
2591 2592 2593 |
# File 'lib/google/apis/jobs_v4/classes.rb', line 2591 def corrected_html @corrected_html end |
#corrected_text ⇒ String
Correction output consisting of the corrected keyword string.
Corresponds to the JSON property correctedText
2596 2597 2598 |
# File 'lib/google/apis/jobs_v4/classes.rb', line 2596 def corrected_text @corrected_text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2603 2604 2605 2606 2607 |
# File 'lib/google/apis/jobs_v4/classes.rb', line 2603 def update!(**args) @corrected = args[:corrected] if args.key?(:corrected) @corrected_html = args[:corrected_html] if args.key?(:corrected_html) @corrected_text = args[:corrected_text] if args.key?(:corrected_text) end |