1 /* 2 * Unannotated Echo 3 * 4 * Unannotated Echo Service Similar to echo_service.proto but without annotations. See unannotated_echo_service.yaml for the equivalent of the annotations in gRPC API configuration format. Echo Service API consists of a single service which returns a message. 5 * 6 * API version: 1.0 7 * Contact: none@example.com 8 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) 9 */ 10 11 package unannotatedecho 12 13 type RpcStatus struct { 14 Code int32 `json:"code,omitempty"` 15 Message string `json:"message,omitempty"` 16 Details []ProtobufAny `json:"details,omitempty"` 17 } 18