19 lines
597 B
Go
19 lines
597 B
Go
// Copyright 2024 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
|
|
package bunnynet
|
|
|
|
type DNSZoneResponse struct {
|
|
Id int64 `json:"Id"`
|
|
Domain string `json:"Domain"`
|
|
Records []struct {
|
|
Id int64 `json:"Id"`
|
|
Type int `json:"Type"`
|
|
Ttl int32 `json:"Ttl"`
|
|
Value string `json:"Value"`
|
|
Name string `json:"Name"`
|
|
Weight int32 `json:"Weight"`
|
|
LatencyZone string `json:"LatencyZone"`
|
|
SmartRoutingType int `json:"SmartRoutingType"`
|
|
} `json:"Records"`
|
|
}
|