1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
// OpenRDAP
// Copyright 2017 Tom Harwood
// MIT License, see the LICENSE file.
package rdap
// IPNetwork represents information of an IP Network.
//
// IPNetwork is a topmost RDAP response object.
type IPNetwork struct {
DecodeData *DecodeData
Common
Conformance []string `rdap:"rdapConformance"`
ObjectClassName string
Notices []Notice
Handle string
StartAddress string
EndAddress string
IPVersion string `rdap:"ipVersion"`
Name string
Type string
Country string
ParentHandle string
Status []string
Entities []Entity
Remarks []Remark
Links []Link
Port43 string
Events []Event
}
|