Module Values.NetworkGeoLocationSource

Contains information about network endpoint location.

Sourcetype nonrec t = {
  1. city : String_.t option;
    (*

    The name of the city.

    *)
  2. country : String_.t option;
    (*

    The name of the country.

    *)
  3. latitude : Double.t option;
    (*

    The latitude information of the endpoint location.

    *)
  4. longitude : Double.t option;
    (*

    The longitude information of the endpoint location.

    *)
}
Sourceval make : ?city:??? -> ?country:??? -> ?latitude:??? -> ?longitude:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `String of String_.t ]) 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