/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about output answers for a contact evaluation.See
* Also:
AWS
* API Reference
The value for an answer in a contact evaluation.
*/ inline const EvaluationAnswerData& GetValue() const{ return m_value; } /** *The value for an answer in a contact evaluation.
*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *The value for an answer in a contact evaluation.
*/ inline void SetValue(const EvaluationAnswerData& value) { m_valueHasBeenSet = true; m_value = value; } /** *The value for an answer in a contact evaluation.
*/ inline void SetValue(EvaluationAnswerData&& value) { m_valueHasBeenSet = true; m_value = std::move(value); } /** *The value for an answer in a contact evaluation.
*/ inline EvaluationAnswerOutput& WithValue(const EvaluationAnswerData& value) { SetValue(value); return *this;} /** *The value for an answer in a contact evaluation.
*/ inline EvaluationAnswerOutput& WithValue(EvaluationAnswerData&& value) { SetValue(std::move(value)); return *this;} /** *The system suggested value for an answer in a contact evaluation.
*/ inline const EvaluationAnswerData& GetSystemSuggestedValue() const{ return m_systemSuggestedValue; } /** *The system suggested value for an answer in a contact evaluation.
*/ inline bool SystemSuggestedValueHasBeenSet() const { return m_systemSuggestedValueHasBeenSet; } /** *The system suggested value for an answer in a contact evaluation.
*/ inline void SetSystemSuggestedValue(const EvaluationAnswerData& value) { m_systemSuggestedValueHasBeenSet = true; m_systemSuggestedValue = value; } /** *The system suggested value for an answer in a contact evaluation.
*/ inline void SetSystemSuggestedValue(EvaluationAnswerData&& value) { m_systemSuggestedValueHasBeenSet = true; m_systemSuggestedValue = std::move(value); } /** *The system suggested value for an answer in a contact evaluation.
*/ inline EvaluationAnswerOutput& WithSystemSuggestedValue(const EvaluationAnswerData& value) { SetSystemSuggestedValue(value); return *this;} /** *The system suggested value for an answer in a contact evaluation.
*/ inline EvaluationAnswerOutput& WithSystemSuggestedValue(EvaluationAnswerData&& value) { SetSystemSuggestedValue(std::move(value)); return *this;} private: EvaluationAnswerData m_value; bool m_valueHasBeenSet = false; EvaluationAnswerData m_systemSuggestedValue; bool m_systemSuggestedValueHasBeenSet = false; }; } // namespace Model } // namespace Connect } // namespace Aws