fixes for Scrutiny end-to-end testing.

This commit is contained in:
Jason Kulatunga
2021-10-28 07:35:25 -07:00
parent 7b7b4fe4e3
commit ce032c5609
3 changed files with 129 additions and 18 deletions
@@ -5,6 +5,14 @@ import (
"time"
)
type DeviceSummaryWrapper struct {
Success bool `json:"success"`
Errors []error `json:"errors"`
Data struct {
Summary map[string]*DeviceSummary `json:"summary"`
} `json:"data"`
}
type DeviceSummary struct {
Device Device `json:"device"`