blob: e60d08fc47344ab328ade3e9d07ee5817f37e7bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
syntax = "proto3";
package Tango.PMR.Stubs;
option java_package = "com.twine.tango.pmr.stubs";
message StubDispenserResponse
{
uint32 DispenserId = 1; // 0..7
uint32 DispenserPosition = 2; //
uint32 InkWorningLevel = 3; // 1- critical 2- level 3- overflow
string Status = 4; // Passed/Failed
uint32 StatusWord = 5; // Error number/bit when the status is Failed
}
|