For each operation of the service, you must define a the input and output types. These types are defined in using Protocol Buffer 3 syntax.
syntax = "proto3";
package helloworld;
// The request message containing the user's name.
message HelloRequest {
string name = 1;
}
// The response message containing the greetings
message HelloReply {
string message = 1;
}