forked from jshiffer/matterbridge
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;
|
|
}
|