2022-07-05 19:49:44 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
option go_package = "./;protobuf";
|
|
|
|
package protobuf;
|
|
|
|
|
|
|
|
message RequestContactVerification {
|
|
|
|
uint64 clock = 1;
|
|
|
|
string challenge = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message AcceptContactVerification {
|
|
|
|
uint64 clock = 1;
|
2022-08-31 14:41:58 +00:00
|
|
|
string id = 2;
|
2022-07-05 19:49:44 +00:00
|
|
|
string response = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message DeclineContactVerification {
|
|
|
|
uint64 clock = 1;
|
2022-08-31 14:41:58 +00:00
|
|
|
string id = 2;
|
2022-07-05 19:49:44 +00:00
|
|
|
}
|
2022-12-14 08:27:02 +00:00
|
|
|
|
|
|
|
message CancelContactVerification {
|
|
|
|
uint64 clock = 1;
|
|
|
|
string id = 2;
|
|
|
|
}
|