/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A list of possible transcriptions for the audio.See Also:
* AWS
* API Reference
The text that was transcribed from the audio.
*/ inline const Aws::String& GetTranscript() const{ return m_transcript; } /** *The text that was transcribed from the audio.
*/ inline bool TranscriptHasBeenSet() const { return m_transcriptHasBeenSet; } /** *The text that was transcribed from the audio.
*/ inline void SetTranscript(const Aws::String& value) { m_transcriptHasBeenSet = true; m_transcript = value; } /** *The text that was transcribed from the audio.
*/ inline void SetTranscript(Aws::String&& value) { m_transcriptHasBeenSet = true; m_transcript = std::move(value); } /** *The text that was transcribed from the audio.
*/ inline void SetTranscript(const char* value) { m_transcriptHasBeenSet = true; m_transcript.assign(value); } /** *The text that was transcribed from the audio.
*/ inline Alternative& WithTranscript(const Aws::String& value) { SetTranscript(value); return *this;} /** *The text that was transcribed from the audio.
*/ inline Alternative& WithTranscript(Aws::String&& value) { SetTranscript(std::move(value)); return *this;} /** *The text that was transcribed from the audio.
*/ inline Alternative& WithTranscript(const char* value) { SetTranscript(value); return *this;} /** *One or more alternative interpretations of the input audio.
*/ inline const Aws::VectorOne or more alternative interpretations of the input audio.
*/ inline bool ItemsHasBeenSet() const { return m_itemsHasBeenSet; } /** *One or more alternative interpretations of the input audio.
*/ inline void SetItems(const Aws::VectorOne or more alternative interpretations of the input audio.
*/ inline void SetItems(Aws::VectorOne or more alternative interpretations of the input audio.
*/ inline Alternative& WithItems(const Aws::VectorOne or more alternative interpretations of the input audio.
*/ inline Alternative& WithItems(Aws::VectorOne or more alternative interpretations of the input audio.
*/ inline Alternative& AddItems(const Item& value) { m_itemsHasBeenSet = true; m_items.push_back(value); return *this; } /** *One or more alternative interpretations of the input audio.
*/ inline Alternative& AddItems(Item&& value) { m_itemsHasBeenSet = true; m_items.push_back(std::move(value)); return *this; } private: Aws::String m_transcript; bool m_transcriptHasBeenSet; Aws::Vector