/** * 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 UpdateGcmChannelResult { public: UpdateGcmChannelResult(); UpdateGcmChannelResult(const Aws::AmazonWebServiceResult& result); UpdateGcmChannelResult& operator=(const Aws::AmazonWebServiceResult& result); inline const GCMChannelResponse& GetGCMChannelResponse() const{ return m_gCMChannelResponse; } inline void SetGCMChannelResponse(const GCMChannelResponse& value) { m_gCMChannelResponse = value; } inline void SetGCMChannelResponse(GCMChannelResponse&& value) { m_gCMChannelResponse = std::move(value); } inline UpdateGcmChannelResult& WithGCMChannelResponse(const GCMChannelResponse& value) { SetGCMChannelResponse(value); return *this;} inline UpdateGcmChannelResult& WithGCMChannelResponse(GCMChannelResponse&& value) { SetGCMChannelResponse(std::move(value)); return *this;} private: GCMChannelResponse m_gCMChannelResponse; }; } // namespace Model } // namespace Pinpoint } // namespace Aws