-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMindResponseProto.proto
52 lines (43 loc) · 1.04 KB
/
MindResponseProto.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
syntax = "proto3";
import "MindTypeProto.proto";
import "DateProto.proto";
import "ItemProto.proto";
option java_multiple_files = true;
package protobuf.mind;
message MindResponseProto {
string sequence = 1;
common.type.MindTypeProto type = 2;
string event = 3;
common.DateProto date = 4;
common.ItemProto item = 5;
string memo = 6;
}
message MindCountResponseProto {
int32 total = 1;
int32 given = 2;
int32 taken = 3;
}
message MindGetResponseProto {
repeated MindResponseProto minds = 1;
}
message MindGetDetailResponseProto {
string sequence = 1;
string relationshipSequence = 2;
common.type.MindTypeProto type = 3;
string event = 4;
common.DateProto date = 5;
common.ItemProto item = 6;
string memo = 7;
}
message RelationshipPostResponseProto {
repeated MindResponseProto relationships = 1;
}
message MindPutResponseProto {
string sequence = 1;
string relationshipSequence = 2;
common.type.MindTypeProto type = 3;
string event = 4;
common.DateProto date = 5;
common.ItemProto item = 6;
string memo = 7;
}