Class: Google::Apis::JobsV4::SpellingCorrection

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/jobs_v4/classes.rb,
generated/google/apis/jobs_v4/representations.rb,
generated/google/apis/jobs_v4/representations.rb

Overview

Spell check result.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SpellingCorrection

Returns a new instance of SpellingCorrection.



2550
2551
2552
# File 'generated/google/apis/jobs_v4/classes.rb', line 2550

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

Instance Attribute Details

#correctedBoolean Also known as: corrected?

Indicates if the query was corrected by the spell checker. Corresponds to the JSON property corrected

Returns:

  • (Boolean)


2533
2534
2535
# File 'generated/google/apis/jobs_v4/classes.rb', line 2533

def corrected
  @corrected
end

#corrected_htmlString

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

Returns:

  • (String)


2543
2544
2545
# File 'generated/google/apis/jobs_v4/classes.rb', line 2543

def corrected_html
  @corrected_html
end

#corrected_textString

Correction output consisting of the corrected keyword string. Corresponds to the JSON property correctedText

Returns:

  • (String)


2548
2549
2550
# File 'generated/google/apis/jobs_v4/classes.rb', line 2548

def corrected_text
  @corrected_text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2555
2556
2557
2558
2559
# File 'generated/google/apis/jobs_v4/classes.rb', line 2555

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