/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace IoTWireless { namespace Model { /** *

LoRaWANGatewayVersion object.

See Also:

AWS * API Reference

*/ class LoRaWANGatewayVersion { public: AWS_IOTWIRELESS_API LoRaWANGatewayVersion(); AWS_IOTWIRELESS_API LoRaWANGatewayVersion(Aws::Utils::Json::JsonView jsonValue); AWS_IOTWIRELESS_API LoRaWANGatewayVersion& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_IOTWIRELESS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The version of the wireless gateway firmware.

*/ inline const Aws::String& GetPackageVersion() const{ return m_packageVersion; } /** *

The version of the wireless gateway firmware.

*/ inline bool PackageVersionHasBeenSet() const { return m_packageVersionHasBeenSet; } /** *

The version of the wireless gateway firmware.

*/ inline void SetPackageVersion(const Aws::String& value) { m_packageVersionHasBeenSet = true; m_packageVersion = value; } /** *

The version of the wireless gateway firmware.

*/ inline void SetPackageVersion(Aws::String&& value) { m_packageVersionHasBeenSet = true; m_packageVersion = std::move(value); } /** *

The version of the wireless gateway firmware.

*/ inline void SetPackageVersion(const char* value) { m_packageVersionHasBeenSet = true; m_packageVersion.assign(value); } /** *

The version of the wireless gateway firmware.

*/ inline LoRaWANGatewayVersion& WithPackageVersion(const Aws::String& value) { SetPackageVersion(value); return *this;} /** *

The version of the wireless gateway firmware.

*/ inline LoRaWANGatewayVersion& WithPackageVersion(Aws::String&& value) { SetPackageVersion(std::move(value)); return *this;} /** *

The version of the wireless gateway firmware.

*/ inline LoRaWANGatewayVersion& WithPackageVersion(const char* value) { SetPackageVersion(value); return *this;} /** *

The model number of the wireless gateway.

*/ inline const Aws::String& GetModel() const{ return m_model; } /** *

The model number of the wireless gateway.

*/ inline bool ModelHasBeenSet() const { return m_modelHasBeenSet; } /** *

The model number of the wireless gateway.

*/ inline void SetModel(const Aws::String& value) { m_modelHasBeenSet = true; m_model = value; } /** *

The model number of the wireless gateway.

*/ inline void SetModel(Aws::String&& value) { m_modelHasBeenSet = true; m_model = std::move(value); } /** *

The model number of the wireless gateway.

*/ inline void SetModel(const char* value) { m_modelHasBeenSet = true; m_model.assign(value); } /** *

The model number of the wireless gateway.

*/ inline LoRaWANGatewayVersion& WithModel(const Aws::String& value) { SetModel(value); return *this;} /** *

The model number of the wireless gateway.

*/ inline LoRaWANGatewayVersion& WithModel(Aws::String&& value) { SetModel(std::move(value)); return *this;} /** *

The model number of the wireless gateway.

*/ inline LoRaWANGatewayVersion& WithModel(const char* value) { SetModel(value); return *this;} /** *

The basic station version of the wireless gateway.

*/ inline const Aws::String& GetStation() const{ return m_station; } /** *

The basic station version of the wireless gateway.

*/ inline bool StationHasBeenSet() const { return m_stationHasBeenSet; } /** *

The basic station version of the wireless gateway.

*/ inline void SetStation(const Aws::String& value) { m_stationHasBeenSet = true; m_station = value; } /** *

The basic station version of the wireless gateway.

*/ inline void SetStation(Aws::String&& value) { m_stationHasBeenSet = true; m_station = std::move(value); } /** *

The basic station version of the wireless gateway.

*/ inline void SetStation(const char* value) { m_stationHasBeenSet = true; m_station.assign(value); } /** *

The basic station version of the wireless gateway.

*/ inline LoRaWANGatewayVersion& WithStation(const Aws::String& value) { SetStation(value); return *this;} /** *

The basic station version of the wireless gateway.

*/ inline LoRaWANGatewayVersion& WithStation(Aws::String&& value) { SetStation(std::move(value)); return *this;} /** *

The basic station version of the wireless gateway.

*/ inline LoRaWANGatewayVersion& WithStation(const char* value) { SetStation(value); return *this;} private: Aws::String m_packageVersion; bool m_packageVersionHasBeenSet = false; Aws::String m_model; bool m_modelHasBeenSet = false; Aws::String m_station; bool m_stationHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws