/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An analyzed segment for a real-time analysis session.See
* Also:
AWS
* API Reference
The analyzed transcript.
*/ inline const Transcript& GetTranscript() const{ return m_transcript; } /** *The analyzed transcript.
*/ inline bool TranscriptHasBeenSet() const { return m_transcriptHasBeenSet; } /** *The analyzed transcript.
*/ inline void SetTranscript(const Transcript& value) { m_transcriptHasBeenSet = true; m_transcript = value; } /** *The analyzed transcript.
*/ inline void SetTranscript(Transcript&& value) { m_transcriptHasBeenSet = true; m_transcript = std::move(value); } /** *The analyzed transcript.
*/ inline RealtimeContactAnalysisSegment& WithTranscript(const Transcript& value) { SetTranscript(value); return *this;} /** *The analyzed transcript.
*/ inline RealtimeContactAnalysisSegment& WithTranscript(Transcript&& value) { SetTranscript(std::move(value)); return *this;} /** *The matched category rules.
*/ inline const Categories& GetCategories() const{ return m_categories; } /** *The matched category rules.
*/ inline bool CategoriesHasBeenSet() const { return m_categoriesHasBeenSet; } /** *The matched category rules.
*/ inline void SetCategories(const Categories& value) { m_categoriesHasBeenSet = true; m_categories = value; } /** *The matched category rules.
*/ inline void SetCategories(Categories&& value) { m_categoriesHasBeenSet = true; m_categories = std::move(value); } /** *The matched category rules.
*/ inline RealtimeContactAnalysisSegment& WithCategories(const Categories& value) { SetCategories(value); return *this;} /** *The matched category rules.
*/ inline RealtimeContactAnalysisSegment& WithCategories(Categories&& value) { SetCategories(std::move(value)); return *this;} private: Transcript m_transcript; bool m_transcriptHasBeenSet = false; Categories m_categories; bool m_categoriesHasBeenSet = false; }; } // namespace Model } // namespace ConnectContactLens } // namespace Aws