Module Values.IpGeoLocationSource

Provides geographic coordinates that indicate where a specified IP address originated from.

Sourcetype nonrec t = {
  1. lat : float option;
    (*

    The latitude coordinate of the location, rounded to four decimal places.

    *)
  2. lon : float option;
    (*

    The longitude coordinate of the location, rounded to four decimal places.

    *)
}
Sourceval make : ?lat:??? -> ?lon:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of float ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t