12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- #ifndef __LIVENESSDETECTION_DEF_G_H
- #define __LIVENESSDETECTION_DEF_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace LivenessDetection {
- //
- // const goes here
- //
- #define LivenessDetectionService_Method_StartLivenessDetection 0
- #define LivenessDetectionService_Method_StopLivenessDetection 1
- #define LivenessDetectionService_MethodSignature_StartLivenessDetection 1875899628
- #define LivenessDetectionService_MethodSignature_StopLivenessDetection -698442534
- #define LivenessDetectionService_LogCode_StartLivenessDetection "QLR040231400"
- #define LivenessDetectionService_LogCode_StopLivenessDetection "QLR040231401"
- struct LivenessDetectionService_StartLivenessDetection_Req
- {
- CSimpleStringW ActionID;
- bool IsActive;
- CSimpleStringW Reserved;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & ActionID & IsActive & Reserved;
- }
- };
- struct LivenessDetectionService_StartLivenessDetection_Ans
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- struct LivenessDetectionService_StopLivenessDetection_Req
- {
- CSimpleStringW ActionID;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & ActionID;
- }
- };
- struct LivenessDetectionService_StopLivenessDetection_Ans
- {
- CSimpleStringW ActionID;
- CSimpleStringW VerifyResult;
- CBlob LivePhotosData;
- CSimpleStringW LivePhotosLength;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & ActionID & VerifyResult & LivePhotosData & LivePhotosLength;
- }
- };
- ///////////////////////////
- } // namespace LivenessDetection
- #endif // __LIVENESSDETECTION_DEF_G_H
|