diff --git a/src/main/proto/server_grpc.proto b/src/main/proto/server_grpc.proto index c5b71e8..de72d85 100644 --- a/src/main/proto/server_grpc.proto +++ b/src/main/proto/server_grpc.proto @@ -7,10 +7,10 @@ option java_generic_services = true; message ServerInput { string target = 1; string method = 2; - repeated Param params = 3; + repeated ServerParam params = 3; } -message Param { +message ServerParam { string type = 1; string data = 2; bool isCollection = 3;