18 lines
417 B
Protocol Buffer
18 lines
417 B
Protocol Buffer
syntax = "proto3";
|
|
package ha.v1;
|
|
option go_package = "gitea.nik4nao.com/nik/home-services/gen/ha/v1;hav1";
|
|
|
|
message EntityState {
|
|
string entity_id = 1;
|
|
string state = 2;
|
|
map<string, string> attributes = 3;
|
|
string last_changed = 4; // RFC3339
|
|
string last_updated = 5; // RFC3339
|
|
}
|
|
|
|
message RGBColor {
|
|
uint32 r = 1;
|
|
uint32 g = 2;
|
|
uint32 b = 3;
|
|
}
|