1// OpenRDAP
2// Copyright 2017 Tom Harwood
3// MIT License, see the LICENSE file.
4
5package rdap
6
7// Help represents a help response.
8//
9// Help is a topmost RDAP response object.
10type Help struct {
11	DecodeData *DecodeData
12
13	Common
14	Conformance []string `rdap:"rdapConformance"`
15	Notices     []Notice
16}
17