github.com/status-im/status-go@v1.1.0/protocol/protobuf/contact_verification.proto (about) 1 syntax = "proto3"; 2 3 option go_package = "./;protobuf"; 4 package protobuf; 5 6 message RequestContactVerification { 7 uint64 clock = 1; 8 string challenge = 3; 9 } 10 11 message AcceptContactVerification { 12 uint64 clock = 1; 13 string id = 2; 14 string response = 3; 15 } 16 17 message DeclineContactVerification { 18 uint64 clock = 1; 19 string id = 2; 20 } 21 22 message CancelContactVerification { 23 uint64 clock = 1; 24 string id = 2; 25 }