Class: Google::Apis::JobsV3::SpellingCorrection
- Inherits:
-
Object
- Object
- Google::Apis::JobsV3::SpellingCorrection
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/jobs_v3/classes.rb,
lib/google/apis/jobs_v3/representations.rb,
lib/google/apis/jobs_v3/representations.rb
Overview
Output only. Spell check result.
Instance Attribute Summary collapse
-
#corrected ⇒ Boolean
(also: #corrected?)
Indicates if the query was corrected by the spell checker.
-
#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.
2529 2530 2531 |
# File 'lib/google/apis/jobs_v3/classes.rb', line 2529 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
2521 2522 2523 |
# File 'lib/google/apis/jobs_v3/classes.rb', line 2521 def corrected @corrected end |
#corrected_text ⇒ String
Correction output consisting of the corrected keyword string.
Corresponds to the JSON property correctedText
2527 2528 2529 |
# File 'lib/google/apis/jobs_v3/classes.rb', line 2527 def corrected_text @corrected_text end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2534 2535 2536 2537 |
# File 'lib/google/apis/jobs_v3/classes.rb', line 2534 def update!(**args) @corrected = args[:corrected] if args.key?(:corrected) @corrected_text = args[:corrected_text] if args.key?(:corrected_text) end |