/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Result structure contains the details of the bundle. See
* Also:
AWS
* API Reference
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;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeBundleResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeBundleResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeBundleResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: BundleDetails m_details; Aws::String m_requestId; }; } // namespace Model } // namespace Mobile } // namespace Aws