Files
waf-platform/EdgeAPI/internal/dnsclients/bunnynet/response_dns_zone.go
2026-02-04 20:27:13 +08:00

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"`
}