1package model
2
3// CheckInInfoWebConnectivity contains the array of URLs returned by the checkin API
4type CheckInInfoWebConnectivity struct {
5	ReportID string    `json:"report_id"`
6	URLs     []URLInfo `json:"urls"`
7}
8
9// CheckInInfo contains the return test objects from the checkin API
10type CheckInInfo struct {
11	WebConnectivity *CheckInInfoWebConnectivity `json:"web_connectivity"`
12}
13