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

The metadata information of the LoRaWAN multicast group.

See * Also:

AWS * API Reference

*/ class LoRaWANMulticastMetadata { public: AWS_IOTWIRELESS_API LoRaWANMulticastMetadata(); AWS_IOTWIRELESS_API LoRaWANMulticastMetadata(Aws::Utils::Json::JsonView jsonValue); AWS_IOTWIRELESS_API LoRaWANMulticastMetadata& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_IOTWIRELESS_API Aws::Utils::Json::JsonValue Jsonize() const; inline int GetFPort() const{ return m_fPort; } inline bool FPortHasBeenSet() const { return m_fPortHasBeenSet; } inline void SetFPort(int value) { m_fPortHasBeenSet = true; m_fPort = value; } inline LoRaWANMulticastMetadata& WithFPort(int value) { SetFPort(value); return *this;} private: int m_fPort; bool m_fPortHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws