mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-24 11:42:03 -08:00
c4157a4d5b
* Update dependencies * Fix whatsmeow API changes
21 lines
395 B
Protocol Buffer
21 lines
395 B
Protocol Buffer
syntax = "proto2";
|
|
package WAMmsRetry;
|
|
option go_package = "go.mau.fi/whatsmeow/proto/waMmsRetry";
|
|
|
|
message MediaRetryNotification {
|
|
enum ResultType {
|
|
GENERAL_ERROR = 0;
|
|
SUCCESS = 1;
|
|
NOT_FOUND = 2;
|
|
DECRYPTION_ERROR = 3;
|
|
}
|
|
|
|
optional string stanzaID = 1;
|
|
optional string directPath = 2;
|
|
optional ResultType result = 3;
|
|
}
|
|
|
|
message ServerErrorReceipt {
|
|
optional string stanzaID = 1;
|
|
}
|