Files
directdnsonly-go/internal/responses/DAResponse.go

10 lines
269 B
Go
Raw Normal View History

2024-01-17 15:56:44 +13:00
package responses
// Definition of expected fields in response to a DirectAdmin instance
type DAResponse struct {
Error int32 `url:"error"`
Exists int32 `url:"exists,omitempty"`
Message string `url:"text,omitempty"`
Details string `url:"details,omitempty"`
}