Module Values.IpOrganizationDetailsSource

Provides information about an internet provider.

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

    The Autonomous System Number (ASN) of the internet provider

    *)
  2. asnOrg : NonEmptyString.t option;
    (*

    The name of the organization that registered the ASN.

    *)
  3. isp : NonEmptyString.t option;
    (*

    The ISP information for the internet provider.

    *)
  4. org : NonEmptyString.t option;
    (*

    The name of the internet provider.

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