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

The number of characters in the input text to be analyzed.

See * Also:

AWS * API Reference

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

The number of characters present in the input text document as processed by * Amazon Comprehend Medical.

*/ inline int GetOriginalTextCharacters() const{ return m_originalTextCharacters; } /** *

The number of characters present in the input text document as processed by * Amazon Comprehend Medical.

*/ inline bool OriginalTextCharactersHasBeenSet() const { return m_originalTextCharactersHasBeenSet; } /** *

The number of characters present in the input text document as processed by * Amazon Comprehend Medical.

*/ inline void SetOriginalTextCharacters(int value) { m_originalTextCharactersHasBeenSet = true; m_originalTextCharacters = value; } /** *

The number of characters present in the input text document as processed by * Amazon Comprehend Medical.

*/ inline Characters& WithOriginalTextCharacters(int value) { SetOriginalTextCharacters(value); return *this;} private: int m_originalTextCharacters; bool m_originalTextCharactersHasBeenSet = false; }; } // namespace Model } // namespace ComprehendMedical } // namespace Aws