2016-03-19 23:18:26 +01:00
|
|
|
package data
|
|
|
|
|
2017-01-20 22:27:44 +01:00
|
|
|
// ResponseData struct
|
2016-03-19 23:18:26 +01:00
|
|
|
type ResponseData struct {
|
2019-11-17 10:44:11 +01:00
|
|
|
Neighbours *Neighbours `json:"neighbours"`
|
|
|
|
Nodeinfo *Nodeinfo `json:"nodeinfo"`
|
|
|
|
Statistics *Statistics `json:"statistics"`
|
|
|
|
CustomFields map[string]interface{} `json:"-"`
|
2016-03-19 23:18:26 +01:00
|
|
|
}
|