14 lines
286 B
Protocol Buffer
14 lines
286 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseResponse.proto";
|
|
|
|
message OCRTranslationResponse {
|
|
required BaseResponse _BaseResponse = 1;
|
|
required uint32 _ClientScanID = 2;
|
|
optional string _Source = 3;
|
|
optional string _Translation = 4;
|
|
required uint32 _ImageType = 5;
|
|
}
|