Skip to content

Commit b7c6e9d

Browse files
author
haikalpribadi
committed
Rename 'ConceptManager.getType()' to '.getThingType()'
1 parent 4c6c237 commit b7c6e9d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

protobuf/concept.proto

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ message ConceptManager {
2626

2727
message Req {
2828
oneof req {
29-
GetType.Req get_type_req = 1;
29+
GetThingType.Req get_thing_type_req = 1;
3030
GetThing.Req get_thing_req = 2;
3131
PutEntityType.Req put_entity_type_req = 3;
3232
PutAttributeType.Req put_attribute_type_req = 4;
@@ -36,21 +36,21 @@ message ConceptManager {
3636

3737
message Res {
3838
oneof res {
39-
GetType.Res get_type_res = 1;
39+
GetThingType.Res get_thing_type_res = 1;
4040
GetThing.Res get_thing_res = 2;
4141
PutEntityType.Res put_entity_type_res = 3;
4242
PutAttributeType.Res put_attribute_type_res = 4;
4343
PutRelationType.Res put_relation_type_res = 5;
4444
}
4545
}
4646

47-
message GetType {
47+
message GetThingType {
4848
message Req {
4949
string label = 1;
5050
}
5151
message Res {
5252
oneof res {
53-
Type type = 1;
53+
ThingType thingType = 1;
5454
}
5555
}
5656
}

0 commit comments

Comments
 (0)