blob: 55f42ce63ec02ebe3660ce243bed6f38af99ec20 [file] [log] [blame]
khenaidooab1f7bd2019-11-14 14:00:27 -05001syntax = "proto3";
2package grpc.gateway.runtime;
3option go_package = "internal";
4
5import "google/protobuf/any.proto";
6
7// StreamError is a response type which is returned when
8// streaming rpc returns an error.
9message 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}