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

Network Measurement Reports.

See Also:

AWS * API Reference

*/ class WcdmaNmrObj { public: AWS_IOTWIRELESS_API WcdmaNmrObj(); AWS_IOTWIRELESS_API WcdmaNmrObj(Aws::Utils::Json::JsonView jsonValue); AWS_IOTWIRELESS_API WcdmaNmrObj& 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 WcdmaNmrObj& 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 WcdmaNmrObj& WithPsc(int value) { SetPsc(value); return *this;} /** *

UTRAN (UMTS Terrestrial Radio Access Network) Cell Global Identifier.

*/ inline int GetUtranCid() const{ return m_utranCid; } /** *

UTRAN (UMTS Terrestrial Radio Access Network) Cell Global Identifier.

*/ inline bool UtranCidHasBeenSet() const { return m_utranCidHasBeenSet; } /** *

UTRAN (UMTS Terrestrial Radio Access Network) Cell Global Identifier.

*/ inline void SetUtranCid(int value) { m_utranCidHasBeenSet = true; m_utranCid = value; } /** *

UTRAN (UMTS Terrestrial Radio Access Network) Cell Global Identifier.

*/ inline WcdmaNmrObj& WithUtranCid(int value) { SetUtranCid(value); return *this;} /** *

Received Signal Code Power (signal power) (dBm)

*/ inline int GetRscp() const{ return m_rscp; } /** *

Received Signal Code Power (signal power) (dBm)

*/ inline bool RscpHasBeenSet() const { return m_rscpHasBeenSet; } /** *

Received Signal Code Power (signal power) (dBm)

*/ inline void SetRscp(int value) { m_rscpHasBeenSet = true; m_rscp = value; } /** *

Received Signal Code Power (signal power) (dBm)

*/ inline WcdmaNmrObj& WithRscp(int value) { SetRscp(value); return *this;} /** *

Path loss, or path attenuation, is the reduction in power density of an * electromagnetic wave as it propagates through space.

*/ inline int GetPathLoss() const{ return m_pathLoss; } /** *

Path loss, or path attenuation, is the reduction in power density of an * electromagnetic wave as it propagates through space.

*/ inline bool PathLossHasBeenSet() const { return m_pathLossHasBeenSet; } /** *

Path loss, or path attenuation, is the reduction in power density of an * electromagnetic wave as it propagates through space.

*/ inline void SetPathLoss(int value) { m_pathLossHasBeenSet = true; m_pathLoss = value; } /** *

Path loss, or path attenuation, is the reduction in power density of an * electromagnetic wave as it propagates through space.

*/ inline WcdmaNmrObj& WithPathLoss(int value) { SetPathLoss(value); return *this;} private: int m_uarfcndl; bool m_uarfcndlHasBeenSet = false; int m_psc; bool m_pscHasBeenSet = false; int m_utranCid; bool m_utranCidHasBeenSet = false; int m_rscp; bool m_rscpHasBeenSet = false; int m_pathLoss; bool m_pathLossHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws