13 lines
246 B
Go
13 lines
246 B
Go
package digitalocean
|
|
|
|
type DomainRecords struct {
|
|
Data string `json:"data"`
|
|
Id int64 `json:"id"`
|
|
Name string `json:"name"`
|
|
Type string `json:"type"`
|
|
}
|
|
|
|
type RecordsResponse struct {
|
|
DomainRecords []DomainRecords `json:"domain_records"`
|
|
}
|