mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 06:40:26 +08:00
15 lines
346 B
Go
15 lines
346 B
Go
// Copyright 2021 GoEdge CDN goedge.cdn@gmail.com. All rights reserved.
|
|
|
|
package huaweidns
|
|
|
|
type RecordSetsResponse struct {
|
|
RecordSets []struct {
|
|
Id string `json:"id"`
|
|
Name string `json:"name"`
|
|
Type string `json:"type"`
|
|
Ttl int `json:"ttl"`
|
|
Line string `json:"line"`
|
|
Records []string `json:"records"`
|
|
} `json:"recordsets"`
|
|
}
|