You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
// import { Request } from '../../models/request';
|
|
|
|
|
import { Request } from 'src/app/hmg-common/services/models/request';
|
|
|
|
|
|
|
|
|
|
export class CheckActivationCodeRequest extends Request {
|
|
|
|
|
FingerPrintPatientIdentificationID?: string ; // ""
|
|
|
|
|
IsMobileFingerPrint?: boolean; // false
|
|
|
|
|
ForRegisteration?: boolean;
|
|
|
|
|
LogInTokenID: string ; // null if not exist
|
|
|
|
|
PatientIdentificationID: string ;
|
|
|
|
|
PatientMobileNumber: string;
|
|
|
|
|
SearchType?: number ; // 1 for id , 2 for file no
|
|
|
|
|
activationCode: string ; // "0000" if sms activation is not required
|
|
|
|
|
isRegister: boolean;
|
|
|
|
|
ZipCode: string;
|
|
|
|
|
IsSilentLogin: boolean;
|
|
|
|
|
}
|