/** * 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 CreateEvaluationFormResult { public: AWS_CONNECT_API CreateEvaluationFormResult(); AWS_CONNECT_API CreateEvaluationFormResult(const Aws::AmazonWebServiceResult& result); AWS_CONNECT_API CreateEvaluationFormResult& 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 CreateEvaluationFormResult& WithEvaluationFormId(const Aws::String& value) { SetEvaluationFormId(value); return *this;} /** *

The unique identifier for the evaluation form.

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

The unique identifier for the evaluation form.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

*/ inline CreateEvaluationFormResult& WithEvaluationFormArn(const char* value) { SetEvaluationFormArn(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 CreateEvaluationFormResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateEvaluationFormResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateEvaluationFormResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_evaluationFormId; Aws::String m_evaluationFormArn; Aws::String m_requestId; }; } // namespace Model } // namespace Connect } // namespace Aws