Code refactoring for bpa operator
[icn.git] / cmd / bpa-operator / vendor / github.com / grpc-ecosystem / grpc-gateway / internal / stream_chunk.proto
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 }