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.
23 lines
768 B
TypeScript
23 lines
768 B
TypeScript
// import { Request } from '../../models/request';
|
|
import { Request } from 'src/app/hmg-common/services/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;
|
|
P_APP_VERSION:string;
|
|
public static SHARED_DATA = 'login-request';
|
|
public static NATIONALITY_CODE = "Nationality_Code";
|
|
// isDentalAllowedBackend: false
|
|
isRegister: boolean; // false
|
|
IsDeviceNFC: boolean;
|
|
}
|