/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include LTE local identification (local ID) information.See Also:
* AWS
* API Reference
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