forked from TrueCloudLab/lego
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"`
|
||
|
}
|