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

LTE local identification (local ID) information.

See Also:

* AWS * API Reference

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

Physical cell ID.

*/ inline int GetPci() const{ return m_pci; } /** *

Physical cell ID.

*/ inline bool PciHasBeenSet() const { return m_pciHasBeenSet; } /** *

Physical cell ID.

*/ inline void SetPci(int value) { m_pciHasBeenSet = true; m_pci = value; } /** *

Physical cell ID.

*/ inline LteLocalId& WithPci(int value) { SetPci(value); return *this;} /** *

Evolved universal terrestrial radio access (E-UTRA) absolute radio frequency * channel number (FCN).

*/ inline int GetEarfcn() const{ return m_earfcn; } /** *

Evolved universal terrestrial radio access (E-UTRA) absolute radio frequency * channel number (FCN).

*/ inline bool EarfcnHasBeenSet() const { return m_earfcnHasBeenSet; } /** *

Evolved universal terrestrial radio access (E-UTRA) absolute radio frequency * channel number (FCN).

*/ inline void SetEarfcn(int value) { m_earfcnHasBeenSet = true; m_earfcn = value; } /** *

Evolved universal terrestrial radio access (E-UTRA) absolute radio frequency * channel number (FCN).

*/ inline LteLocalId& WithEarfcn(int value) { SetEarfcn(value); return *this;} private: int m_pci; bool m_pciHasBeenSet = false; int m_earfcn; bool m_earfcnHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws