defmodule GeolocationClient.Entities.LatLon do @moduledoc """ Represents a latitude and longitude entity. """ defstruct [ :latitude, :longitude, :accuracy ] @type t :: %__MODULE__{ latitude: float(), longitude: float(), accuracy: float() } end