21 lines
364 B
Plaintext
Raw Normal View History

2025-02-17 14:20:40 +08:00
export interface RegistrationDeviceNoRsp {
registrationDeviceNoRsp: RegistrationDeviceNoRspDetails;
}
interface RegistrationDeviceNoRspDetails {
head: Head;
}
interface Head {
resultCode: string;
time: string;
resultMessage: string;
}
2025-02-18 13:22:38 +08:00
export interface FaceCompareResp {
imageCompareRsp: ImageCompareRsp
}
interface ImageCompareRsp {
head: Head;
}