polar-prost 0.1.0

Protobuf bindings to interact with Polar watches
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
syntax = "proto2";
package data;

import "types.proto";

message PbPointOfInterest {
	required types.PbLocation location = 1 ;
	optional uint64 point_id = 2 ;
	optional types.PbMultiLineText name = 3 ;
	optional bool alarm = 4 ;
	optional types.PbSystemDateTime created = 100 ;
	optional types.PbSystemDateTime last_modified = 101 ;
}

message PbPointOfInterests {
	repeated data.PbPointOfInterest point = 1 ;
}