/** * 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 RemoveAttributesResult { public: RemoveAttributesResult(); RemoveAttributesResult(const Aws::AmazonWebServiceResult& result); RemoveAttributesResult& operator=(const Aws::AmazonWebServiceResult& result); inline const AttributesResource& GetAttributesResource() const{ return m_attributesResource; } inline void SetAttributesResource(const AttributesResource& value) { m_attributesResource = value; } inline void SetAttributesResource(AttributesResource&& value) { m_attributesResource = std::move(value); } inline RemoveAttributesResult& WithAttributesResource(const AttributesResource& value) { SetAttributesResource(value); return *this;} inline RemoveAttributesResult& WithAttributesResource(AttributesResource&& value) { SetAttributesResource(std::move(value)); return *this;} private: AttributesResource m_attributesResource; }; } // namespace Model } // namespace Pinpoint } // namespace Aws