/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include TD-SCDMA local identification (local Id) information.See
* Also:
AWS
* API Reference
TD-SCDMA UTRA (Universal Terrestrial Radio Access Network) absolute RF * channel number (UARFCN).
*/ inline int GetUarfcn() const{ return m_uarfcn; } /** *TD-SCDMA UTRA (Universal Terrestrial Radio Access Network) absolute RF * channel number (UARFCN).
*/ inline bool UarfcnHasBeenSet() const { return m_uarfcnHasBeenSet; } /** *TD-SCDMA UTRA (Universal Terrestrial Radio Access Network) absolute RF * channel number (UARFCN).
*/ inline void SetUarfcn(int value) { m_uarfcnHasBeenSet = true; m_uarfcn = value; } /** *TD-SCDMA UTRA (Universal Terrestrial Radio Access Network) absolute RF * channel number (UARFCN).
*/ inline TdscdmaLocalId& WithUarfcn(int value) { SetUarfcn(value); return *this;} /** *Cell parameters for TD-SCDMA.
*/ inline int GetCellParams() const{ return m_cellParams; } /** *Cell parameters for TD-SCDMA.
*/ inline bool CellParamsHasBeenSet() const { return m_cellParamsHasBeenSet; } /** *Cell parameters for TD-SCDMA.
*/ inline void SetCellParams(int value) { m_cellParamsHasBeenSet = true; m_cellParams = value; } /** *Cell parameters for TD-SCDMA.
*/ inline TdscdmaLocalId& WithCellParams(int value) { SetCellParams(value); return *this;} private: int m_uarfcn; bool m_uarfcnHasBeenSet = false; int m_cellParams; bool m_cellParamsHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws