/** * 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 { /** *

LoRaWAN gateway metatdata.

See Also:

AWS * API Reference

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

The gateway's EUI value.

*/ inline const Aws::String& GetGatewayEui() const{ return m_gatewayEui; } /** *

The gateway's EUI value.

*/ inline bool GatewayEuiHasBeenSet() const { return m_gatewayEuiHasBeenSet; } /** *

The gateway's EUI value.

*/ inline void SetGatewayEui(const Aws::String& value) { m_gatewayEuiHasBeenSet = true; m_gatewayEui = value; } /** *

The gateway's EUI value.

*/ inline void SetGatewayEui(Aws::String&& value) { m_gatewayEuiHasBeenSet = true; m_gatewayEui = std::move(value); } /** *

The gateway's EUI value.

*/ inline void SetGatewayEui(const char* value) { m_gatewayEuiHasBeenSet = true; m_gatewayEui.assign(value); } /** *

The gateway's EUI value.

*/ inline LoRaWANGatewayMetadata& WithGatewayEui(const Aws::String& value) { SetGatewayEui(value); return *this;} /** *

The gateway's EUI value.

*/ inline LoRaWANGatewayMetadata& WithGatewayEui(Aws::String&& value) { SetGatewayEui(std::move(value)); return *this;} /** *

The gateway's EUI value.

*/ inline LoRaWANGatewayMetadata& WithGatewayEui(const char* value) { SetGatewayEui(value); return *this;} /** *

The SNR value.

*/ inline double GetSnr() const{ return m_snr; } /** *

The SNR value.

*/ inline bool SnrHasBeenSet() const { return m_snrHasBeenSet; } /** *

The SNR value.

*/ inline void SetSnr(double value) { m_snrHasBeenSet = true; m_snr = value; } /** *

The SNR value.

*/ inline LoRaWANGatewayMetadata& WithSnr(double value) { SetSnr(value); return *this;} /** *

The RSSI value.

*/ inline double GetRssi() const{ return m_rssi; } /** *

The RSSI value.

*/ inline bool RssiHasBeenSet() const { return m_rssiHasBeenSet; } /** *

The RSSI value.

*/ inline void SetRssi(double value) { m_rssiHasBeenSet = true; m_rssi = value; } /** *

The RSSI value.

*/ inline LoRaWANGatewayMetadata& WithRssi(double value) { SetRssi(value); return *this;} private: Aws::String m_gatewayEui; bool m_gatewayEuiHasBeenSet = false; double m_snr; bool m_snrHasBeenSet = false; double m_rssi; bool m_rssiHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws