Skip to content
Permalink
v0.9.0
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
32 lines (28 sloc) 681 Bytes
// 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
}