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

Provides you with the properties of your new category, including its * associated rules.

*/ inline const CategoryProperties& GetCategoryProperties() const{ return m_categoryProperties; } /** *

Provides you with the properties of your new category, including its * associated rules.

*/ inline void SetCategoryProperties(const CategoryProperties& value) { m_categoryProperties = value; } /** *

Provides you with the properties of your new category, including its * associated rules.

*/ inline void SetCategoryProperties(CategoryProperties&& value) { m_categoryProperties = std::move(value); } /** *

Provides you with the properties of your new category, including its * associated rules.

*/ inline CreateCallAnalyticsCategoryResult& WithCategoryProperties(const CategoryProperties& value) { SetCategoryProperties(value); return *this;} /** *

Provides you with the properties of your new category, including its * associated rules.

*/ inline CreateCallAnalyticsCategoryResult& WithCategoryProperties(CategoryProperties&& value) { SetCategoryProperties(std::move(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 CreateCallAnalyticsCategoryResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateCallAnalyticsCategoryResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateCallAnalyticsCategoryResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: CategoryProperties m_categoryProperties; Aws::String m_requestId; }; } // namespace Model } // namespace TranscribeService } // namespace Aws