/** * 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 LexModelsV2 { namespace Model { /** *

The object containing information that associates the recommended intent/slot * type with a conversation.

See Also:

AWS * API Reference

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

The content of the transcript that meets the search filter criteria. For the * JSON format of the transcript, see Output * transcript format.

*/ inline const Aws::String& GetTranscript() const{ return m_transcript; } /** *

The content of the transcript that meets the search filter criteria. For the * JSON format of the transcript, see Output * transcript format.

*/ inline bool TranscriptHasBeenSet() const { return m_transcriptHasBeenSet; } /** *

The content of the transcript that meets the search filter criteria. For the * JSON format of the transcript, see Output * transcript format.

*/ inline void SetTranscript(const Aws::String& value) { m_transcriptHasBeenSet = true; m_transcript = value; } /** *

The content of the transcript that meets the search filter criteria. For the * JSON format of the transcript, see Output * transcript format.

*/ inline void SetTranscript(Aws::String&& value) { m_transcriptHasBeenSet = true; m_transcript = std::move(value); } /** *

The content of the transcript that meets the search filter criteria. For the * JSON format of the transcript, see Output * transcript format.

*/ inline void SetTranscript(const char* value) { m_transcriptHasBeenSet = true; m_transcript.assign(value); } /** *

The content of the transcript that meets the search filter criteria. For the * JSON format of the transcript, see Output * transcript format.

*/ inline AssociatedTranscript& WithTranscript(const Aws::String& value) { SetTranscript(value); return *this;} /** *

The content of the transcript that meets the search filter criteria. For the * JSON format of the transcript, see Output * transcript format.

*/ inline AssociatedTranscript& WithTranscript(Aws::String&& value) { SetTranscript(std::move(value)); return *this;} /** *

The content of the transcript that meets the search filter criteria. For the * JSON format of the transcript, see Output * transcript format.

*/ inline AssociatedTranscript& WithTranscript(const char* value) { SetTranscript(value); return *this;} private: Aws::String m_transcript; bool m_transcriptHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws