/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include LoRaWANGatewayCurrentVersion object.See Also:
AWS
* API Reference
The version of the gateways that should receive the update.
*/ inline const LoRaWANGatewayVersion& GetCurrentVersion() const{ return m_currentVersion; } /** *The version of the gateways that should receive the update.
*/ inline bool CurrentVersionHasBeenSet() const { return m_currentVersionHasBeenSet; } /** *The version of the gateways that should receive the update.
*/ inline void SetCurrentVersion(const LoRaWANGatewayVersion& value) { m_currentVersionHasBeenSet = true; m_currentVersion = value; } /** *The version of the gateways that should receive the update.
*/ inline void SetCurrentVersion(LoRaWANGatewayVersion&& value) { m_currentVersionHasBeenSet = true; m_currentVersion = std::move(value); } /** *The version of the gateways that should receive the update.
*/ inline LoRaWANGatewayCurrentVersion& WithCurrentVersion(const LoRaWANGatewayVersion& value) { SetCurrentVersion(value); return *this;} /** *The version of the gateways that should receive the update.
*/ inline LoRaWANGatewayCurrentVersion& WithCurrentVersion(LoRaWANGatewayVersion&& value) { SetCurrentVersion(std::move(value)); return *this;} private: LoRaWANGatewayVersion m_currentVersion; bool m_currentVersionHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws