You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
415 B
16 lines
415 B
message Request {
|
|
required string command = 1;
|
|
optional bytes id = 2;
|
|
optional bytes target = 3;
|
|
optional bytes forwardRequest = 4;
|
|
optional bytes forwardResponse = 5;
|
|
optional bytes roundtripToken = 6;
|
|
optional bytes value = 7;
|
|
}
|
|
|
|
message Response {
|
|
optional bytes id = 1;
|
|
optional bytes nodes = 2;
|
|
optional bytes value = 3;
|
|
optional bytes roundtripToken = 4;
|
|
}
|
|
|