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

The identifier of the announcement.

*/ inline const Aws::String& GetAnnouncementArn() const{ return m_announcementArn; } /** *

The identifier of the announcement.

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

The identifier of the announcement.

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

The identifier of the announcement.

*/ inline void SetAnnouncementArn(const char* value) { m_announcementArn.assign(value); } /** *

The identifier of the announcement.

*/ inline SendAnnouncementResult& WithAnnouncementArn(const Aws::String& value) { SetAnnouncementArn(value); return *this;} /** *

The identifier of the announcement.

*/ inline SendAnnouncementResult& WithAnnouncementArn(Aws::String&& value) { SetAnnouncementArn(std::move(value)); return *this;} /** *

The identifier of the announcement.

*/ inline SendAnnouncementResult& WithAnnouncementArn(const char* value) { SetAnnouncementArn(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 SendAnnouncementResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline SendAnnouncementResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline SendAnnouncementResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_announcementArn; Aws::String m_requestId; }; } // namespace Model } // namespace AlexaForBusiness } // namespace Aws