/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The SNOMED-CT concepts that the entity could refer to, along with a score
* indicating the likelihood of the match. See Also:
AWS
* API Reference
The description of the SNOMED-CT concept.
*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *The description of the SNOMED-CT concept.
*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *The description of the SNOMED-CT concept.
*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *The description of the SNOMED-CT concept.
*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *The description of the SNOMED-CT concept.
*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *The description of the SNOMED-CT concept.
*/ inline SNOMEDCTConcept& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *The description of the SNOMED-CT concept.
*/ inline SNOMEDCTConcept& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *The description of the SNOMED-CT concept.
*/ inline SNOMEDCTConcept& WithDescription(const char* value) { SetDescription(value); return *this;} /** *The numeric ID for the SNOMED-CT concept.
*/ inline const Aws::String& GetCode() const{ return m_code; } /** *The numeric ID for the SNOMED-CT concept.
*/ inline bool CodeHasBeenSet() const { return m_codeHasBeenSet; } /** *The numeric ID for the SNOMED-CT concept.
*/ inline void SetCode(const Aws::String& value) { m_codeHasBeenSet = true; m_code = value; } /** *The numeric ID for the SNOMED-CT concept.
*/ inline void SetCode(Aws::String&& value) { m_codeHasBeenSet = true; m_code = std::move(value); } /** *The numeric ID for the SNOMED-CT concept.
*/ inline void SetCode(const char* value) { m_codeHasBeenSet = true; m_code.assign(value); } /** *The numeric ID for the SNOMED-CT concept.
*/ inline SNOMEDCTConcept& WithCode(const Aws::String& value) { SetCode(value); return *this;} /** *The numeric ID for the SNOMED-CT concept.
*/ inline SNOMEDCTConcept& WithCode(Aws::String&& value) { SetCode(std::move(value)); return *this;} /** *The numeric ID for the SNOMED-CT concept.
*/ inline SNOMEDCTConcept& WithCode(const char* value) { SetCode(value); return *this;} /** *The level of confidence Amazon Comprehend Medical has that the entity should * be linked to the identified SNOMED-CT concept.
*/ inline double GetScore() const{ return m_score; } /** *The level of confidence Amazon Comprehend Medical has that the entity should * be linked to the identified SNOMED-CT concept.
*/ inline bool ScoreHasBeenSet() const { return m_scoreHasBeenSet; } /** *The level of confidence Amazon Comprehend Medical has that the entity should * be linked to the identified SNOMED-CT concept.
*/ inline void SetScore(double value) { m_scoreHasBeenSet = true; m_score = value; } /** *The level of confidence Amazon Comprehend Medical has that the entity should * be linked to the identified SNOMED-CT concept.
*/ inline SNOMEDCTConcept& WithScore(double value) { SetScore(value); return *this;} private: Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::String m_code; bool m_codeHasBeenSet = false; double m_score; bool m_scoreHasBeenSet = false; }; } // namespace Model } // namespace ComprehendMedical } // namespace Aws