1 package monitor 2 3 // Region wraps an NS1 /monitoring/regions resource. 4 type Region struct { 5 Code string `json:"code"` 6 Name string `json:"name"` 7 Subnets []string `json:"subnets"` 8 } 9