Module Values.RemoteIpDetailsSource

Contains information about the remote IP address of the connection.

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

    The city information of the remote IP address.

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

    The country code of the remote IP address.

    *)
  3. geoLocation : GeoLocation.t option;
    (*

    The location information of the remote IP address.

    *)
  4. ipAddressV4 : SensitiveString.t option;
    (*

    The IPv4 remote address of the connection.

    *)
  5. ipAddressV6 : SensitiveString.t option;
    (*

    The IPv6 remote address of the connection.

    *)
  6. organization : Organization.t option;
    (*

    The ISP organization information of the remote IP address.

    *)
}
Sourceval make : ?city:??? -> ?country:??? -> ?geoLocation:??? -> ?ipAddressV4:??? -> ?ipAddressV6:??? -> ?organization:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SensitiveString.t | `Structure of (string * [> `Double of Double.t | `String of String_.t ]) list ]) 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