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

ABP device object for LoRaWAN specification v1.0.x

See Also:

* AWS * API Reference

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

The FCnt init value.

*/ inline int GetFCntStart() const{ return m_fCntStart; } /** *

The FCnt init value.

*/ inline bool FCntStartHasBeenSet() const { return m_fCntStartHasBeenSet; } /** *

The FCnt init value.

*/ inline void SetFCntStart(int value) { m_fCntStartHasBeenSet = true; m_fCntStart = value; } /** *

The FCnt init value.

*/ inline UpdateAbpV1_0_x& WithFCntStart(int value) { SetFCntStart(value); return *this;} private: int m_fCntStart; bool m_fCntStartHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws