You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
374 B

syntax = "proto3";
package api.valuation;
option go_package = "customer/api/valuation;valuation";
service Valuation {
rpc GetEstimatePrice (GetEstimatePriceReq) returns (GetEstimatePriceReply);
}
message GetEstimatePriceReq {
string origin = 1;
string destination = 2;
}
message GetEstimatePriceReply {
string origin = 1;
string destination = 2;
int64 price = 3;
}