如何在 proto 文件中定义通用消息。
例如:
message GenericResponse
{
bool status = 1;
Foo foo= 2;
Bar bar = 3;
Baz baz = 4;
}
而不是上面提到的协议,我需要以下协议。
message GenericResponse
{
bool status = 1;
google.protobuf.Message response = 2;
}
我需要在. Foo
_ 有没有办法做到这一点?Bar
Baz
response