stream_chunk.proto 288 B

12345678910111213
  1. syntax = "proto3";
  2. package grpc.gateway.runtime;
  3. option go_package = "internal";
  4. // StreamError is a response type which is returned when
  5. // streaming rpc returns an error.
  6. message StreamError {
  7. int32 grpc_code = 1;
  8. int32 http_code = 2;
  9. string message = 3;
  10. string http_status = 4;
  11. }