Protobuf Tester
Proto Definition:
syntax = "proto3"; message Person { string name = 1; int32 age = 2; string email = 3; }
JSON Input:
{ "name": "John Doe", "age": 30, "email": "john@example.com" }
Convert to Protobuf