more features
This commit is contained in:
@@ -17,6 +17,8 @@ message AddItem {
|
||||
int32 Stock = 7;
|
||||
int32 Tax = 8;
|
||||
string Disclaimer = 10;
|
||||
string ArticleType = 11;
|
||||
optional string Outlet = 12;
|
||||
}
|
||||
|
||||
message RemoveItem {
|
||||
@@ -31,6 +33,30 @@ message ChangeQuantity {
|
||||
message SetDelivery {
|
||||
string Provider = 1;
|
||||
repeated int64 Items = 2;
|
||||
optional PickupPoint PickupPoint = 3;
|
||||
string Country = 4;
|
||||
string Zip = 5;
|
||||
optional string Address = 6;
|
||||
optional string City = 7;
|
||||
}
|
||||
|
||||
message SetPickupPoint {
|
||||
int64 DeliveryId = 1;
|
||||
string Id = 2;
|
||||
optional string Name = 3;
|
||||
optional string Address = 4;
|
||||
optional string City = 5;
|
||||
optional string Zip = 6;
|
||||
optional string Country = 7;
|
||||
}
|
||||
|
||||
message PickupPoint {
|
||||
string Id = 1;
|
||||
optional string Name = 2;
|
||||
optional string Address = 3;
|
||||
optional string City = 4;
|
||||
optional string Zip = 5;
|
||||
optional string Country = 6;
|
||||
}
|
||||
|
||||
message RemoveDelivery {
|
||||
|
||||
Reference in New Issue
Block a user