blob: 80c7557f394eef2b0efe0005adf73cf514821b77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
syntax = "proto3";
package pseudonyms.account_holder;
import "google/protobuf/timestamp.proto";
message AccountHolder {
string entity_id = 1;
string account_id = 2;
google.protobuf.Timestamp cre_dt_tm = 3;
}
|