15 lines
248 B
Plaintext
15 lines
248 B
Plaintext
|
|
export interface RegistrationDeviceNoRsp {
|
||
|
|
registrationDeviceNoRsp: RegistrationDeviceNoRspDetails;
|
||
|
|
}
|
||
|
|
|
||
|
|
interface RegistrationDeviceNoRspDetails {
|
||
|
|
head: Head;
|
||
|
|
}
|
||
|
|
|
||
|
|
interface Head {
|
||
|
|
resultCode: string;
|
||
|
|
time: string;
|
||
|
|
resultMessage: string;
|
||
|
|
}
|
||
|
|
|