github.com/akamai/AkamaiOPEN-edgegrid-golang/v8@v8.1.0/pkg/cloudlets/warning.go (about) 1 package cloudlets 2 3 type ( 4 // Warning represents warning information about the policy version request. 5 Warning struct { 6 Detail string `json:"detail,omitempty"` 7 JSONPointer string `json:"jsonPointer,omitempty"` 8 Status int `json:"status,omitempty"` 9 Title string `json:"title,omitempty"` 10 Type string `json:"type,omitempty"` 11 } 12 )