mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
10 lines
195 B
Protocol Buffer
10 lines
195 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
import "google/protobuf/timestamp.proto";
|
||
|
|
||
|
message Person {
|
||
|
string uuid = 1;
|
||
|
google.protobuf.Timestamp created_at = 2;
|
||
|
string properties = 3;
|
||
|
bool is_identified = 4;
|
||
|
}
|