mirror of
https://gitlab.com/mobicoop/v3/service/matcher.git
synced 2026-01-01 05:52:40 +00:00
first working e2e version
This commit is contained in:
@@ -56,6 +56,35 @@ enum AlgorithmType {
|
||||
message Match {
|
||||
string id = 1;
|
||||
string adId = 2;
|
||||
string role = 3;
|
||||
int32 duration = 4;
|
||||
int32 distance = 5;
|
||||
repeated Journey journeys = 6;
|
||||
}
|
||||
|
||||
message Journey {
|
||||
string firstDate = 1;
|
||||
string lastDate = 2;
|
||||
repeated Step steps = 3;
|
||||
}
|
||||
|
||||
message Step {
|
||||
int32 duration = 1;
|
||||
int32 distance = 2;
|
||||
double lon = 3;
|
||||
double lat = 4;
|
||||
repeated Actor actors = 5;
|
||||
}
|
||||
|
||||
message Actor {
|
||||
string role = 1;
|
||||
string target = 2;
|
||||
string firstDatetime = 3;
|
||||
string firstMinDatetime = 4;
|
||||
string firstMaxDatetime = 5;
|
||||
string lastDatetime = 6;
|
||||
string lastMinDatetime = 7;
|
||||
string lastMaxDatetime = 8;
|
||||
}
|
||||
|
||||
message Matches {
|
||||
|
||||
Reference in New Issue
Block a user