mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-02-22 21:46:53 +00:00
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;
|
||
|
}
|