How do you use oneof fields in a grpc node? I am using dynamic code generation. I tried to modify the quickstart with
service Greeter {
rpc SayHello (HelloRequest) returns (HelloReply) {}
rpc SayHelloOneOf (OneOfRequest) returns (HelloReply) {}
}
message OneOfRequest {
oneof nameOneof {
string name = 1;
}
}
However I do not know how to set the name in the request in the client. Thank you