github.com/akamai/AkamaiOPEN-edgegrid-golang@v1.2.2/api-endpoints-v2/problems.go (about)

     1  package apiendpoints
     2  
     3  type Problems []*Problem
     4  
     5  type Problem struct {
     6  	Detail   string   `json:"detail"`
     7  	Errors   Problems `json:"errors"`
     8  	Instance string   `json:"instance"`
     9  	Status   int      `json:"status"`
    10  	Title    string   `json:"title"`
    11  	Type     string   `json:"type"`
    12  }