/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about notes for a contact evaluation.See Also:
* AWS
* API Reference
The note for an item (section or question) in a contact evaluation.
*/ inline const Aws::String& GetValue() const{ return m_value; } /** *The note for an item (section or question) in a contact evaluation.
*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *The note for an item (section or question) in a contact evaluation.
*/ inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; } /** *The note for an item (section or question) in a contact evaluation.
*/ inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); } /** *The note for an item (section or question) in a contact evaluation.
*/ inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); } /** *The note for an item (section or question) in a contact evaluation.
*/ inline EvaluationNote& WithValue(const Aws::String& value) { SetValue(value); return *this;} /** *The note for an item (section or question) in a contact evaluation.
*/ inline EvaluationNote& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;} /** *The note for an item (section or question) in a contact evaluation.
*/ inline EvaluationNote& WithValue(const char* value) { SetValue(value); return *this;} private: Aws::String m_value; bool m_valueHasBeenSet = false; }; } // namespace Model } // namespace Connect } // namespace Aws