Files
2021-09-12 20:09:08 -04:00

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"`
}