nim-chat-poc/protos/private_v1.proto

20 lines
378 B
Protocol Buffer
Raw Normal View History

2025-07-05 14:54:19 -07:00
syntax = "proto3";
2025-07-11 14:46:05 -07:00
package wap.convos.private_v1;
2025-07-05 14:54:19 -07:00
message Placeholder {
uint32 counter = 1;
}
message PrivateV1Frame {
2025-08-22 18:45:55 -07:00
string conversation_id = 1;
bytes sender = 2;
2025-09-05 15:35:47 -07:00
int64 timestamp = 3; // Sender reported timestamp
2025-07-05 14:54:19 -07:00
oneof frame_type {
2025-12-15 13:55:19 -08:00
bytes content = 10;
2025-07-05 14:54:19 -07:00
Placeholder placeholder = 11;
// ....
}
}