Interface Connection

interface Connection {
    asn: null | number;
    domain: null | string;
    organization: null | string;
    route: null | string;
    type:
        | null
        | "inactive"
        | "business"
        | "education"
        | "government"
        | "hosting"
        | "isp";
}

Properties

asn: null | number
domain: null | string
organization: null | string
route: null | string
type:
    | null
    | "inactive"
    | "business"
    | "education"
    | "government"
    | "hosting"
    | "isp"