/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Connect { namespace Model { /** *

Information about the automation configuration in numeric * questions.

See Also:

AWS * API Reference

*/ class EvaluationFormNumericQuestionAutomation { public: AWS_CONNECT_API EvaluationFormNumericQuestionAutomation(); AWS_CONNECT_API EvaluationFormNumericQuestionAutomation(Aws::Utils::Json::JsonView jsonValue); AWS_CONNECT_API EvaluationFormNumericQuestionAutomation& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_CONNECT_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The property value of the automation.

*/ inline const NumericQuestionPropertyValueAutomation& GetPropertyValue() const{ return m_propertyValue; } /** *

The property value of the automation.

*/ inline bool PropertyValueHasBeenSet() const { return m_propertyValueHasBeenSet; } /** *

The property value of the automation.

*/ inline void SetPropertyValue(const NumericQuestionPropertyValueAutomation& value) { m_propertyValueHasBeenSet = true; m_propertyValue = value; } /** *

The property value of the automation.

*/ inline void SetPropertyValue(NumericQuestionPropertyValueAutomation&& value) { m_propertyValueHasBeenSet = true; m_propertyValue = std::move(value); } /** *

The property value of the automation.

*/ inline EvaluationFormNumericQuestionAutomation& WithPropertyValue(const NumericQuestionPropertyValueAutomation& value) { SetPropertyValue(value); return *this;} /** *

The property value of the automation.

*/ inline EvaluationFormNumericQuestionAutomation& WithPropertyValue(NumericQuestionPropertyValueAutomation&& value) { SetPropertyValue(std::move(value)); return *this;} private: NumericQuestionPropertyValueAutomation m_propertyValue; bool m_propertyValueHasBeenSet = false; }; } // namespace Model } // namespace Connect } // namespace Aws