WAMmsRetry.proto 441 B

123456789101112131415161718192021
  1. syntax = "proto2";
  2. package WAMmsRetry;
  3. option go_package = "git.bobomao.top/joey/whatsmeow/proto/waMmsRetry";
  4. message MediaRetryNotification {
  5. enum ResultType {
  6. GENERAL_ERROR = 0;
  7. SUCCESS = 1;
  8. NOT_FOUND = 2;
  9. DECRYPTION_ERROR = 3;
  10. }
  11. optional string stanzaID = 1;
  12. optional string directPath = 2;
  13. optional ResultType result = 3;
  14. optional bytes messageSecret = 4;
  15. }
  16. message ServerErrorReceipt {
  17. optional string stanzaID = 1;
  18. }