github.com/cloudfoundry-community/cloudfoundry-cli@v6.44.1-0.20240130060226-cda5ed8e89a5+incompatible/api/cloudcontroller/ccerror/v3_error.go (about)

     1  package ccerror
     2  
     3  // V3Error represents a cloud controller error.
     4  type V3Error struct {
     5  	Code   int64  `json:"code"`
     6  	Detail string `json:"detail"`
     7  	Title  string `json:"title"`
     8  }