/** * 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 Connect { namespace Model { class UpdateEvaluationFormResult { public: AWS_CONNECT_API UpdateEvaluationFormResult(); AWS_CONNECT_API UpdateEvaluationFormResult(const Aws::AmazonWebServiceResult& result); AWS_CONNECT_API UpdateEvaluationFormResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The unique identifier for the evaluation form.

*/ inline const Aws::String& GetEvaluationFormId() const{ return m_evaluationFormId; } /** *

The unique identifier for the evaluation form.

*/ inline void SetEvaluationFormId(const Aws::String& value) { m_evaluationFormId = value; } /** *

The unique identifier for the evaluation form.

*/ inline void SetEvaluationFormId(Aws::String&& value) { m_evaluationFormId = std::move(value); } /** *

The unique identifier for the evaluation form.

*/ inline void SetEvaluationFormId(const char* value) { m_evaluationFormId.assign(value); } /** *

The unique identifier for the evaluation form.

*/ inline UpdateEvaluationFormResult& WithEvaluationFormId(const Aws::String& value) { SetEvaluationFormId(value); return *this;} /** *

The unique identifier for the evaluation form.

*/ inline UpdateEvaluationFormResult& WithEvaluationFormId(Aws::String&& value) { SetEvaluationFormId(std::move(value)); return *this;} /** *

The unique identifier for the evaluation form.

*/ inline UpdateEvaluationFormResult& WithEvaluationFormId(const char* value) { SetEvaluationFormId(value); return *this;} /** *

The Amazon Resource Name (ARN) for the contact evaluation resource.

*/ inline const Aws::String& GetEvaluationFormArn() const{ return m_evaluationFormArn; } /** *

The Amazon Resource Name (ARN) for the contact evaluation resource.

*/ inline void SetEvaluationFormArn(const Aws::String& value) { m_evaluationFormArn = value; } /** *

The Amazon Resource Name (ARN) for the contact evaluation resource.

*/ inline void SetEvaluationFormArn(Aws::String&& value) { m_evaluationFormArn = std::move(value); } /** *

The Amazon Resource Name (ARN) for the contact evaluation resource.

*/ inline void SetEvaluationFormArn(const char* value) { m_evaluationFormArn.assign(value); } /** *

The Amazon Resource Name (ARN) for the contact evaluation resource.

*/ inline UpdateEvaluationFormResult& WithEvaluationFormArn(const Aws::String& value) { SetEvaluationFormArn(value); return *this;} /** *

The Amazon Resource Name (ARN) for the contact evaluation resource.

*/ inline UpdateEvaluationFormResult& WithEvaluationFormArn(Aws::String&& value) { SetEvaluationFormArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) for the contact evaluation resource.

*/ inline UpdateEvaluationFormResult& WithEvaluationFormArn(const char* value) { SetEvaluationFormArn(value); return *this;} /** *

The version of the updated evaluation form resource.

*/ inline int GetEvaluationFormVersion() const{ return m_evaluationFormVersion; } /** *

The version of the updated evaluation form resource.

*/ inline void SetEvaluationFormVersion(int value) { m_evaluationFormVersion = value; } /** *

The version of the updated evaluation form resource.

*/ inline UpdateEvaluationFormResult& WithEvaluationFormVersion(int value) { SetEvaluationFormVersion(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline UpdateEvaluationFormResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateEvaluationFormResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateEvaluationFormResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_evaluationFormId; Aws::String m_evaluationFormArn; int m_evaluationFormVersion; Aws::String m_requestId; }; } // namespace Model } // namespace Connect } // namespace Aws