如何在proto文件中定义通用消息。
例如:
v.xyzw
我需要遵循以下协议,而不是上述协议。
v.rgba
我需要在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
值。
有没有办法实现这个目标?