openhab-addons/bundles/org.openhab.binding.mercedesme/proto/cluster.proto
Bernd Weymann 1789d545cd [MercedesMe] Switch to Mercedes App SDK (#15628)
* add protocol buffer definitions
* oauth rework
* websocket introduction

Signed-off-by: Bernd Weymann <bernd.weymann@gmail.com>
Signed-off-by: Ciprian Pascu <contact@ciprianpascu.ro>
2025-01-02 09:48:53 +02:00

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;
}