1 /* 2 * Echo Service 3 * 4 * Echo Service API consists of a single service which returns a message. 5 * 6 * API version: version not set 7 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) 8 */ 9 10 package echo 11 12 type RuntimeError struct { 13 Error_ string `json:"error,omitempty"` 14 Code int32 `json:"code,omitempty"` 15 Message string `json:"message,omitempty"` 16 Details []ProtobufAny `json:"details,omitempty"` 17 } 18