traefik/vendor/github.com/xenolf/lego/providers/dns/bluecat/client.go

17 lines
416 B
Go
Raw Normal View History

2018-09-17 13:16:03 +00:00
package bluecat
// JSON body for Bluecat entity requests and responses
type bluecatEntity struct {
ID string `json:"id,omitempty"`
Name string `json:"name"`
Type string `json:"type"`
Properties string `json:"properties"`
}
type entityResponse struct {
ID uint `json:"id"`
Name string `json:"name"`
Type string `json:"type"`
Properties string `json:"properties"`
}