1 package dns 2 3 type Version struct { 4 Id int `json:"id,omitempty"` 5 Name string `json:"name,omitempty"` 6 Active bool `json:"active,omitempty"` 7 ActivatedAt int `json:"activated_at,omitempty"` 8 CreatedAt int `json:"created_at,omitempty"` 9 } 10