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