Permalink
Cannot retrieve contributors at this time
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?
rdap/entity.go
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
31 lines (27 sloc)
697 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// OpenRDAP | |
// Copyright 2017 Tom Harwood | |
// MIT License, see the LICENSE file. | |
package rdap | |
// Entity represents information of an organisation or person. | |
// | |
// Entity is a topmost RDAP response object. | |
type Entity struct { | |
DecodeData *DecodeData | |
Common | |
Conformance []string `rdap:"rdapConformance"` | |
ObjectClassName string | |
Notices []Notice | |
Handle string | |
VCard *VCard `rdap:"vcardArray"` | |
Roles []string | |
PublicIDs []PublicID `rdap:"publicIds"` | |
Entities []Entity | |
Remarks []Remark | |
Links []Link | |
Events []Event | |
AsEventActor []Event | |
Status []string | |
Port43 string | |
Networks []IPNetwork | |
Autnums []Autnum | |
} |