File: user.proto

package info (click to toggle)
python-confluent-kafka 2.11.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,660 kB
  • sloc: python: 30,428; ansic: 9,487; sh: 1,477; makefile: 192
file content (11 lines) | stat: -rw-r--r-- 204 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
syntax = "proto3";

import "confluent/meta.proto";

message User {
    string name = 1 [
        (confluent.field_meta).tags = "PII"
    ];
    int64 favorite_number = 2;
    string favorite_color = 3;
}