Matteo Scandolo | a6a3aee | 2019-11-26 13:30:14 -0700 | [diff] [blame] | 1 | syntax = "proto3"; |
2 | package grpc.gateway.runtime; | ||||
3 | option go_package = "internal"; | ||||
4 | |||||
5 | import "google/protobuf/any.proto"; | ||||
6 | |||||
7 | // StreamError is a response type which is returned when | ||||
8 | // streaming rpc returns an error. | ||||
9 | message StreamError { | ||||
10 | int32 grpc_code = 1; | ||||
11 | int32 http_code = 2; | ||||
12 | string message = 3; | ||||
13 | string http_status = 4; | ||||
14 | repeated google.protobuf.Any details = 5; | ||||
15 | } |