github.com/confluentinc/confluent-kafka-go@v1.9.2/schemaregistry/test/proto/test.proto (about) 1 syntax = "proto3"; 2 3 package test; 4 option go_package="../test"; 5 6 import "google/protobuf/descriptor.proto"; 7 8 message TestMessage { 9 string test_string = 1; 10 bool test_bool = 2; 11 bytes test_bytes = 3; 12 double test_double = 4; 13 float test_float = 5; 14 fixed32 test_fixed32 = 6; 15 fixed64 test_fixed64 = 7; 16 int32 test_int32 = 8; 17 int64 test_int64 = 9; 18 sfixed32 test_sfixed32 = 10; 19 sfixed64 test_sfixed64 = 11; 20 sint32 test_sint32 = 12; 21 sint64 test_sint64 = 13; 22 uint32 test_uint32 = 14; 23 uint64 test_uint64 = 15; 24 }