/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The result of the purchase offering (for example, success or
* failure).See Also:
AWS
* API Reference
Represents the offering transaction for the purchase result.
*/ inline const OfferingTransaction& GetOfferingTransaction() const{ return m_offeringTransaction; } /** *Represents the offering transaction for the purchase result.
*/ inline void SetOfferingTransaction(const OfferingTransaction& value) { m_offeringTransaction = value; } /** *Represents the offering transaction for the purchase result.
*/ inline void SetOfferingTransaction(OfferingTransaction&& value) { m_offeringTransaction = std::move(value); } /** *Represents the offering transaction for the purchase result.
*/ inline PurchaseOfferingResult& WithOfferingTransaction(const OfferingTransaction& value) { SetOfferingTransaction(value); return *this;} /** *Represents the offering transaction for the purchase result.
*/ inline PurchaseOfferingResult& WithOfferingTransaction(OfferingTransaction&& value) { SetOfferingTransaction(std::move(value)); return *this;} private: OfferingTransaction m_offeringTransaction; }; } // namespace Model } // namespace DeviceFarm } // namespace Aws