public sealed class SpellingCorrection : IMessage<SpellingCorrection>, IEquatable<SpellingCorrection>, IDeepCloneable<SpellingCorrection>, IBufferMessage, IMessage
Corrected output with html tags to highlight the corrected words.
Corrected words are called out with the "<b><i>...</i></b>" 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 <b><i>engineer</i></b>".
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-17 UTC."],[[["The document details the `SpellingCorrection` class within the `Google.Cloud.Talent.V4` namespace, which is part of the Google Cloud Talent API and is used to provide spell check results."],["The `SpellingCorrection` class implements several interfaces, including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, indicating its capabilities for message handling, equality comparisons, deep cloning, and buffer operations."],["The class provides three primary properties: `Corrected` (a boolean indicating if correction was applied), `CorrectedHtml` (the corrected text with HTML tags for highlighting), and `CorrectedText` (the plain text of the corrected output)."],["The class contains two constructors to create instances, one default, and another that takes an existing `SpellingCorrection` object as a parameter, which supports the ability to make copies."],["This documentation provides versioning information, detailing the current version as 1.2.0, with links to versions ranging from 1.0.0 to 2.7.0, allowing users to access prior versions."]]],[]]