/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace IoT { namespace Model { class AWS_IOT_API UpdateBillingGroupResult { public: UpdateBillingGroupResult(); UpdateBillingGroupResult(const Aws::AmazonWebServiceResult& result); UpdateBillingGroupResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The latest version of the billing group.

*/ inline long long GetVersion() const{ return m_version; } /** *

The latest version of the billing group.

*/ inline void SetVersion(long long value) { m_version = value; } /** *

The latest version of the billing group.

*/ inline UpdateBillingGroupResult& WithVersion(long long value) { SetVersion(value); return *this;} private: long long m_version; }; } // namespace Model } // namespace IoT } // namespace Aws