-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathDPR-Tutorial1Step6.proto
66 lines (51 loc) · 1.09 KB
/
DPR-Tutorial1Step6.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
syntax = "proto3";
package OnlineShopBackend;
message CustomerAccount {
string name = 1;
string address = 2;
CustomerAccountId customeraccountId = 3;
}
message CustomerAccountId {
int64 customeraccountId = 1;
}
message Order {
string orderNumber = 1;
OrderId orderId = 2;
repeated OrderItem orderitemList = 3;
}
message OrderId {
int64 orderId = 1;
}
message OrderItem {
string productName = 1;
string price = 2;
OrderItemId orderitemId = 3;
}
message OrderItemId {
int64 orderitemId = 1;
}
message Product {
string productName = 1;
string image = 2;
string productCategory = 3;
ProductId productId = 4;
}
message ProductId {
int64 productId = 1;
}
message ProductIdList {
repeated ProductId entries = 1;
}
message ProductList {
repeated Product entries = 1;
}
service Customer {
rpc createAccount(CustomerAccount) returns (CustomerAccountId);
}
service ProductCatalog {
rpc readProductInformation(ProductIdList) returns (ProductList);
}
service OrderBasket {
rpc createOrder(Order) returns (OrderId);
rpc addOrderItem(OrderItem) returns (OrderItemId);
}