/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about input 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 EvaluationAnswerInput& WithValue(const EvaluationAnswerData& value) { SetValue(value); return *this;} /** *The value for an answer in a contact evaluation.
*/ inline EvaluationAnswerInput& WithValue(EvaluationAnswerData&& value) { SetValue(std::move(value)); return *this;} private: EvaluationAnswerData m_value; bool m_valueHasBeenSet = false; }; } // namespace Model } // namespace Connect } // namespace Aws