Module Values.IpOwnerSource

Provides information about the registered owner of an IP address.

Sourcetype nonrec t = {
  1. asn : string option;
    (*

    The autonomous system number (ASN) for the autonomous system that included the IP address.

    *)
  2. asnOrg : string option;
    (*

    The organization identifier that's associated with the autonomous system number (ASN) for the autonomous system that included the IP address.

    *)
  3. isp : string option;
    (*

    The name of the internet service provider (ISP) that owned the IP address.

    *)
  4. org : string option;
    (*

    The name of the organization that owned the IP address.

    *)
}
Sourceval make : ?asn:??? -> ?asnOrg:??? -> ?isp:??? -> ?org:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string ]) 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