Files
EdgeAPI/internal/dnsclients/cloudflare/response_zones.go

13 lines
231 B
Go
Raw Normal View History

2021-04-15 17:02:01 +08:00
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
package cloudflare
type ZonesResponse struct {
BaseResponse
Result []struct {
Id string `json:"id"`
Name string `json:"name"`
} `json:"result"`
}