/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace CodeGuruReviewer { namespace Model { class AWS_CODEGURUREVIEWER_API DescribeRecommendationFeedbackResult { public: DescribeRecommendationFeedbackResult(); DescribeRecommendationFeedbackResult(const Aws::AmazonWebServiceResult& result); DescribeRecommendationFeedbackResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The recommendation feedback given by the user.

*/ inline const RecommendationFeedback& GetRecommendationFeedback() const{ return m_recommendationFeedback; } /** *

The recommendation feedback given by the user.

*/ inline void SetRecommendationFeedback(const RecommendationFeedback& value) { m_recommendationFeedback = value; } /** *

The recommendation feedback given by the user.

*/ inline void SetRecommendationFeedback(RecommendationFeedback&& value) { m_recommendationFeedback = std::move(value); } /** *

The recommendation feedback given by the user.

*/ inline DescribeRecommendationFeedbackResult& WithRecommendationFeedback(const RecommendationFeedback& value) { SetRecommendationFeedback(value); return *this;} /** *

The recommendation feedback given by the user.

*/ inline DescribeRecommendationFeedbackResult& WithRecommendationFeedback(RecommendationFeedback&& value) { SetRecommendationFeedback(std::move(value)); return *this;} private: RecommendationFeedback m_recommendationFeedback; }; } // namespace Model } // namespace CodeGuruReviewer } // namespace Aws