/** * 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 Mobile { namespace Model { /** *

Result structure contains the details of the bundle.

See * Also:

AWS * API Reference

*/ class AWS_MOBILE_API DescribeBundleResult { public: DescribeBundleResult(); DescribeBundleResult(const Aws::AmazonWebServiceResult& result); DescribeBundleResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The details of the bundle.

*/ inline const BundleDetails& GetDetails() const{ return m_details; } /** *

The details of the bundle.

*/ inline void SetDetails(const BundleDetails& value) { m_details = value; } /** *

The details of the bundle.

*/ inline void SetDetails(BundleDetails&& value) { m_details = std::move(value); } /** *

The details of the bundle.

*/ inline DescribeBundleResult& WithDetails(const BundleDetails& value) { SetDetails(value); return *this;} /** *

The details of the bundle.

*/ inline DescribeBundleResult& WithDetails(BundleDetails&& value) { SetDetails(std::move(value)); return *this;} private: BundleDetails m_details; }; } // namespace Model } // namespace Mobile } // namespace Aws