mirror of
https://github.com/go-acme/lego.git
synced 2024-12-17 23:23:35 +02:00
11 lines
291 B
Go
11 lines
291 B
Go
package internal
|
|
|
|
// DNSRecord DNS record representation.
|
|
type DNSRecord struct {
|
|
ID string `json:"id,omitempty"`
|
|
Hostname string `json:"hostname,omitempty"`
|
|
TTL int `json:"ttl,omitempty"`
|
|
Type string `json:"type,omitempty"`
|
|
Value string `json:"value,omitempty"`
|
|
}
|