1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #pragma once
7 #include <aws/pinpoint/Pinpoint_EXPORTS.h>
8 #include <aws/pinpoint/model/SMSChannelResponse.h>
9 #include <utility>
10 
11 namespace Aws
12 {
13 template<typename RESULT_TYPE>
14 class AmazonWebServiceResult;
15 
16 namespace Utils
17 {
18 namespace Json
19 {
20   class JsonValue;
21 } // namespace Json
22 } // namespace Utils
23 namespace Pinpoint
24 {
25 namespace Model
26 {
27   class AWS_PINPOINT_API UpdateSmsChannelResult
28   {
29   public:
30     UpdateSmsChannelResult();
31     UpdateSmsChannelResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
32     UpdateSmsChannelResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
33 
34 
35 
GetSMSChannelResponse()36     inline const SMSChannelResponse& GetSMSChannelResponse() const{ return m_sMSChannelResponse; }
37 
38 
SetSMSChannelResponse(const SMSChannelResponse & value)39     inline void SetSMSChannelResponse(const SMSChannelResponse& value) { m_sMSChannelResponse = value; }
40 
41 
SetSMSChannelResponse(SMSChannelResponse && value)42     inline void SetSMSChannelResponse(SMSChannelResponse&& value) { m_sMSChannelResponse = std::move(value); }
43 
44 
WithSMSChannelResponse(const SMSChannelResponse & value)45     inline UpdateSmsChannelResult& WithSMSChannelResponse(const SMSChannelResponse& value) { SetSMSChannelResponse(value); return *this;}
46 
47 
WithSMSChannelResponse(SMSChannelResponse && value)48     inline UpdateSmsChannelResult& WithSMSChannelResponse(SMSChannelResponse&& value) { SetSMSChannelResponse(std::move(value)); return *this;}
49 
50   private:
51 
52     SMSChannelResponse m_sMSChannelResponse;
53   };
54 
55 } // namespace Model
56 } // namespace Pinpoint
57 } // namespace Aws
58