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.
18 lines
542 B
TypeScript
18 lines
542 B
TypeScript
import { Request } from '../../models/request';
|
|
|
|
export class LoginRequest extends Request {
|
|
PatientID: number; // 0
|
|
PatientIdentificationID: string; // "2401412511"
|
|
PatientMobileNumber: string; // "537753536"
|
|
SearchType: number; // 1 for iqama 2 for file number
|
|
TokenID: string; // ""
|
|
ZipCode: string; // "966"
|
|
MobileNumber: string;
|
|
P_USER_NAME : string;
|
|
P_MOBILE_NUMBER : string;
|
|
P_PASSWORD : string;
|
|
P_LANGUAGE : string;
|
|
// isDentalAllowedBackend: false
|
|
isRegister: boolean; // false
|
|
}
|