mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-11 07:32:11 +01:00
15 lines
287 B
Protocol Buffer
15 lines
287 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package proto;
|
||
|
|
||
|
option java_package = "com.daimler.mbcarkit.proto";
|
||
|
|
||
|
enum MemberStatus {
|
||
|
UNKNOWN_MEMBER_STATUS = 0;
|
||
|
STARTING = 1;
|
||
|
READY = 2;
|
||
|
STOPPING = 3;
|
||
|
}
|
||
|
message AppTwinMemberStatusValue {
|
||
|
MemberStatus status = 1;
|
||
|
uint32 apptwin_count = 2;
|
||
|
}
|