/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace IoTWireless { namespace Model { /** *

The wrapper for position solver details.

See Also:

AWS * API Reference

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

The Semtech GNSS solver object details.

*/ inline const SemtechGnssDetail& GetSemtechGnss() const{ return m_semtechGnss; } /** *

The Semtech GNSS solver object details.

*/ inline bool SemtechGnssHasBeenSet() const { return m_semtechGnssHasBeenSet; } /** *

The Semtech GNSS solver object details.

*/ inline void SetSemtechGnss(const SemtechGnssDetail& value) { m_semtechGnssHasBeenSet = true; m_semtechGnss = value; } /** *

The Semtech GNSS solver object details.

*/ inline void SetSemtechGnss(SemtechGnssDetail&& value) { m_semtechGnssHasBeenSet = true; m_semtechGnss = std::move(value); } /** *

The Semtech GNSS solver object details.

*/ inline PositionSolverDetails& WithSemtechGnss(const SemtechGnssDetail& value) { SetSemtechGnss(value); return *this;} /** *

The Semtech GNSS solver object details.

*/ inline PositionSolverDetails& WithSemtechGnss(SemtechGnssDetail&& value) { SetSemtechGnss(std::move(value)); return *this;} private: SemtechGnssDetail m_semtechGnss; bool m_semtechGnssHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws