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

WCDMA local identification (local ID) information.

See Also:

* AWS * API Reference

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

WCDMA UTRA Absolute RF Channel Number downlink.

*/ inline int GetUarfcndl() const{ return m_uarfcndl; } /** *

WCDMA UTRA Absolute RF Channel Number downlink.

*/ inline bool UarfcndlHasBeenSet() const { return m_uarfcndlHasBeenSet; } /** *

WCDMA UTRA Absolute RF Channel Number downlink.

*/ inline void SetUarfcndl(int value) { m_uarfcndlHasBeenSet = true; m_uarfcndl = value; } /** *

WCDMA UTRA Absolute RF Channel Number downlink.

*/ inline WcdmaLocalId& WithUarfcndl(int value) { SetUarfcndl(value); return *this;} /** *

Primary Scrambling Code.

*/ inline int GetPsc() const{ return m_psc; } /** *

Primary Scrambling Code.

*/ inline bool PscHasBeenSet() const { return m_pscHasBeenSet; } /** *

Primary Scrambling Code.

*/ inline void SetPsc(int value) { m_pscHasBeenSet = true; m_psc = value; } /** *

Primary Scrambling Code.

*/ inline WcdmaLocalId& WithPsc(int value) { SetPsc(value); return *this;} private: int m_uarfcndl; bool m_uarfcndlHasBeenSet = false; int m_psc; bool m_pscHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws