/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A custom response string that Amazon Lex sends to your application. You
* define the content and structure the string.See Also:
AWS
* API Reference
The string that is sent to your application.
*/ inline const Aws::String& GetValue() const{ return m_value; } /** *The string that is sent to your application.
*/ inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; } /** *The string that is sent to your application.
*/ inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; } /** *The string that is sent to your application.
*/ inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); } /** *The string that is sent to your application.
*/ inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); } /** *The string that is sent to your application.
*/ inline CustomPayload& WithValue(const Aws::String& value) { SetValue(value); return *this;} /** *The string that is sent to your application.
*/ inline CustomPayload& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;} /** *The string that is sent to your application.
*/ inline CustomPayload& WithValue(const char* value) { SetValue(value); return *this;} private: Aws::String m_value; bool m_valueHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws