14 lines
289 B
Protocol Buffer
14 lines
289 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package MMPro.micromsg;
|
|
|
|
import "BaseResponse.proto";
|
|
import "VoicePieceCtx.proto";
|
|
|
|
message VerifyVoicePrintResponse {
|
|
required BaseResponse _BaseResponse = 1;
|
|
required VoicePieceCtx _NextPiece = 2;
|
|
required uint32 _Result = 3;
|
|
required uint32 _VoiceTicket = 4;
|
|
}
|