blob: bda724ec639af43e2167bf66b26b2abeb5dbe172 (
plain)
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
|
package foo;
message Person {
required string name = 1;
required int32 id = 2;
optional string email = 3;
enum PhoneType {
MOBILE = 0;
HOME = 1;
WORK = 2;
}
message PhoneNumber {
message Comment {
required string comment = 1;
}
required string number = 1;
optional PhoneType type = 2 [default = HOME];
optional Comment comment = 3;
}
repeated PhoneNumber phone = 4;
}
message LookupResult
{
optional Person person = 1;
}
message Name {
optional string name = 1;
};
service DirLookup {
rpc ByName (Name) returns (LookupResult);
}
|