mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-27 13:12:05 -08:00
c4157a4d5b
* Update dependencies * Fix whatsmeow API changes
14 lines
289 B
Protocol Buffer
14 lines
289 B
Protocol Buffer
syntax = "proto2";
|
|
package WAProtobufsDeviceCapabilities;
|
|
option go_package = "go.mau.fi/whatsmeow/proto/waDeviceCapabilities";
|
|
|
|
message DeviceCapabilities {
|
|
enum ChatLockSupportLevel {
|
|
NONE = 0;
|
|
MINIMAL = 1;
|
|
FULL = 2;
|
|
}
|
|
|
|
optional ChatLockSupportLevel chatLockSupportLevel = 1;
|
|
}
|