/** * 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 UpdateDynamicThingGroupResult { public: UpdateDynamicThingGroupResult(); UpdateDynamicThingGroupResult(const Aws::AmazonWebServiceResult& result); UpdateDynamicThingGroupResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The dynamic thing group version.

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

The dynamic thing group version.

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

The dynamic thing group version.

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