AppFlowy/frontend/rust-lib/dart-notify/resources/proto/subject.proto

10 lines
202 B
Protocol Buffer
Raw Normal View History

2021-07-21 07:43:05 +00:00
syntax = "proto3";
2021-10-14 06:34:22 +00:00
message SubscribeObject {
string source = 1;
2021-07-21 07:43:05 +00:00
int32 ty = 2;
2021-09-07 09:12:03 +00:00
string id = 3;
oneof one_of_payload { bytes payload = 4; };
oneof one_of_error { bytes error = 5; };
2021-07-21 07:43:05 +00:00
}