/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides geographic coordinates that indicate where a specified IP address
* originated from.See Also:
AWS
* API Reference
The latitude coordinate of the location, rounded to four decimal places.
*/ inline double GetLat() const{ return m_lat; } /** *The latitude coordinate of the location, rounded to four decimal places.
*/ inline bool LatHasBeenSet() const { return m_latHasBeenSet; } /** *The latitude coordinate of the location, rounded to four decimal places.
*/ inline void SetLat(double value) { m_latHasBeenSet = true; m_lat = value; } /** *The latitude coordinate of the location, rounded to four decimal places.
*/ inline IpGeoLocation& WithLat(double value) { SetLat(value); return *this;} /** *The longitude coordinate of the location, rounded to four decimal places.
*/ inline double GetLon() const{ return m_lon; } /** *The longitude coordinate of the location, rounded to four decimal places.
*/ inline bool LonHasBeenSet() const { return m_lonHasBeenSet; } /** *The longitude coordinate of the location, rounded to four decimal places.
*/ inline void SetLon(double value) { m_lonHasBeenSet = true; m_lon = value; } /** *The longitude coordinate of the location, rounded to four decimal places.
*/ inline IpGeoLocation& WithLon(double value) { SetLon(value); return *this;} private: double m_lat; bool m_latHasBeenSet = false; double m_lon; bool m_lonHasBeenSet = false; }; } // namespace Model } // namespace Macie2 } // namespace Aws