15 lines
248 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;
}