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

The version of the updated thing group.

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

The version of the updated thing group.

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

The version of the updated thing group.

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