/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The object containing information that associates the recommended intent/slot
* type with a conversation.See Also:
AWS
* API Reference
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