stream_chunk.proto 368 B

12345678910111213141516
  1. syntax = "proto3";
  2. package grpc.gateway.runtime;
  3. option go_package = "internal";
  4. import "google/protobuf/any.proto";
  5. // StreamError is a response type which is returned when
  6. // streaming rpc returns an error.
  7. message StreamError {
  8. int32 grpc_code = 1;
  9. int32 http_code = 2;
  10. string message = 3;
  11. string http_status = 4;
  12. repeated google.protobuf.Any details = 5;
  13. }