/** * 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 UpdateAdmChannelResult { public: UpdateAdmChannelResult(); UpdateAdmChannelResult(const Aws::AmazonWebServiceResult& result); UpdateAdmChannelResult& operator=(const Aws::AmazonWebServiceResult& result); inline const ADMChannelResponse& GetADMChannelResponse() const{ return m_aDMChannelResponse; } inline void SetADMChannelResponse(const ADMChannelResponse& value) { m_aDMChannelResponse = value; } inline void SetADMChannelResponse(ADMChannelResponse&& value) { m_aDMChannelResponse = std::move(value); } inline UpdateAdmChannelResult& WithADMChannelResponse(const ADMChannelResponse& value) { SetADMChannelResponse(value); return *this;} inline UpdateAdmChannelResult& WithADMChannelResponse(ADMChannelResponse&& value) { SetADMChannelResponse(std::move(value)); return *this;} private: ADMChannelResponse m_aDMChannelResponse; }; } // namespace Model } // namespace Pinpoint } // namespace Aws