/** * 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 Pinpoint { namespace Model { class AWS_PINPOINT_API UpdateSmsChannelResult { public: UpdateSmsChannelResult(); UpdateSmsChannelResult(const Aws::AmazonWebServiceResult& result); UpdateSmsChannelResult& operator=(const Aws::AmazonWebServiceResult& result); inline const SMSChannelResponse& GetSMSChannelResponse() const{ return m_sMSChannelResponse; } inline void SetSMSChannelResponse(const SMSChannelResponse& value) { m_sMSChannelResponse = value; } inline void SetSMSChannelResponse(SMSChannelResponse&& value) { m_sMSChannelResponse = std::move(value); } inline UpdateSmsChannelResult& WithSMSChannelResponse(const SMSChannelResponse& value) { SetSMSChannelResponse(value); return *this;} inline UpdateSmsChannelResult& WithSMSChannelResponse(SMSChannelResponse&& value) { SetSMSChannelResponse(std::move(value)); return *this;} private: SMSChannelResponse m_sMSChannelResponse; }; } // namespace Model } // namespace Pinpoint } // namespace Aws