/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The wrapper for position solver configurations.See Also:
AWS
* API Reference
The Semtech GNSS solver configuration object.
*/ inline const SemtechGnssConfiguration& GetSemtechGnss() const{ return m_semtechGnss; } /** *The Semtech GNSS solver configuration object.
*/ inline bool SemtechGnssHasBeenSet() const { return m_semtechGnssHasBeenSet; } /** *The Semtech GNSS solver configuration object.
*/ inline void SetSemtechGnss(const SemtechGnssConfiguration& value) { m_semtechGnssHasBeenSet = true; m_semtechGnss = value; } /** *The Semtech GNSS solver configuration object.
*/ inline void SetSemtechGnss(SemtechGnssConfiguration&& value) { m_semtechGnssHasBeenSet = true; m_semtechGnss = std::move(value); } /** *The Semtech GNSS solver configuration object.
*/ inline PositionSolverConfigurations& WithSemtechGnss(const SemtechGnssConfiguration& value) { SetSemtechGnss(value); return *this;} /** *The Semtech GNSS solver configuration object.
*/ inline PositionSolverConfigurations& WithSemtechGnss(SemtechGnssConfiguration&& value) { SetSemtechGnss(std::move(value)); return *this;} private: SemtechGnssConfiguration m_semtechGnss; bool m_semtechGnssHasBeenSet = false; }; } // namespace Model } // namespace IoTWireless } // namespace Aws