github.com/free5gc/openapi@v1.0.8/models/model_problem_details_2.go (about) 1 /* 2 * Npcf_PolicyAuthorization Service API 3 * 4 * This is the Policy Authorization Service 5 * 6 * API version: 1.0.0 7 * Generated by: OpenAPI Generator (https://openapi-generator.tech) 8 */ 9 10 package models 11 12 type ProblemDetails2 struct { 13 Type string `json:"type,omitempty" bson:"type"` 14 Title string `json:"title,omitempty" bson:"title"` 15 Status int32 `json:"status,omitempty" bson:"status"` 16 Detail string `json:"detail,omitempty" bson:"detail"` 17 Instance string `json:"instance,omitempty" bson:"instance"` 18 Cause string `json:"cause,omitempty" bson:"cause"` 19 InvalidParams []InvalidParam2 `json:"invalidParams,omitempty" bson:"invalidParams"` 20 SupportedFeatures string `json:"supportedFeatures,omitempty" bson:"supportedFeatures"` 21 }