/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace ComprehendMedical { namespace Model { /** *

The ICD-10-CM concepts that the entity could refer to, along with a score * indicating the likelihood of the match.

See Also:

AWS * API Reference

*/ class AWS_COMPREHENDMEDICAL_API ICD10CMConcept { public: ICD10CMConcept(); ICD10CMConcept(Aws::Utils::Json::JsonView jsonValue); ICD10CMConcept& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; /** *

The long description of the ICD-10-CM code in the ontology.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

The long description of the ICD-10-CM code in the ontology.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

The long description of the ICD-10-CM code in the ontology.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

The long description of the ICD-10-CM code in the ontology.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

The long description of the ICD-10-CM code in the ontology.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

The long description of the ICD-10-CM code in the ontology.

*/ inline ICD10CMConcept& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

The long description of the ICD-10-CM code in the ontology.

*/ inline ICD10CMConcept& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

The long description of the ICD-10-CM code in the ontology.

*/ inline ICD10CMConcept& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

The ICD-10-CM code that identifies the concept found in the knowledge base * from the Centers for Disease Control.

*/ inline const Aws::String& GetCode() const{ return m_code; } /** *

The ICD-10-CM code that identifies the concept found in the knowledge base * from the Centers for Disease Control.

*/ inline bool CodeHasBeenSet() const { return m_codeHasBeenSet; } /** *

The ICD-10-CM code that identifies the concept found in the knowledge base * from the Centers for Disease Control.

*/ inline void SetCode(const Aws::String& value) { m_codeHasBeenSet = true; m_code = value; } /** *

The ICD-10-CM code that identifies the concept found in the knowledge base * from the Centers for Disease Control.

*/ inline void SetCode(Aws::String&& value) { m_codeHasBeenSet = true; m_code = std::move(value); } /** *

The ICD-10-CM code that identifies the concept found in the knowledge base * from the Centers for Disease Control.

*/ inline void SetCode(const char* value) { m_codeHasBeenSet = true; m_code.assign(value); } /** *

The ICD-10-CM code that identifies the concept found in the knowledge base * from the Centers for Disease Control.

*/ inline ICD10CMConcept& WithCode(const Aws::String& value) { SetCode(value); return *this;} /** *

The ICD-10-CM code that identifies the concept found in the knowledge base * from the Centers for Disease Control.

*/ inline ICD10CMConcept& WithCode(Aws::String&& value) { SetCode(std::move(value)); return *this;} /** *

The ICD-10-CM code that identifies the concept found in the knowledge base * from the Centers for Disease Control.

*/ inline ICD10CMConcept& WithCode(const char* value) { SetCode(value); return *this;} /** *

The level of confidence that Amazon Comprehend Medical has that the entity is * accurately linked to an ICD-10-CM concept.

*/ inline double GetScore() const{ return m_score; } /** *

The level of confidence that Amazon Comprehend Medical has that the entity is * accurately linked to an ICD-10-CM concept.

*/ inline bool ScoreHasBeenSet() const { return m_scoreHasBeenSet; } /** *

The level of confidence that Amazon Comprehend Medical has that the entity is * accurately linked to an ICD-10-CM concept.

*/ inline void SetScore(double value) { m_scoreHasBeenSet = true; m_score = value; } /** *

The level of confidence that Amazon Comprehend Medical has that the entity is * accurately linked to an ICD-10-CM concept.

*/ inline ICD10CMConcept& WithScore(double value) { SetScore(value); return *this;} private: Aws::String m_description; bool m_descriptionHasBeenSet; Aws::String m_code; bool m_codeHasBeenSet; double m_score; bool m_scoreHasBeenSet; }; } // namespace Model } // namespace ComprehendMedical } // namespace Aws