1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
syntax = "proto3"; package pseudonyms.account; import "google/protobuf/timestamp.proto"; message Account { string id = 1; } message CreateAccount { string id = 1; string account_id = 2; google.protobuf.Timestamp cre_dt_tm = 3; }