src/app/modules/org-management/interfaces/user-upload-status-response.ts
Properties |
dob |
dob:
|
Type : string
|
email:
|
Type : string
|
emailVerified |
emailVerified:
|
Type : string
|
firstName |
firstName:
|
Type : string
|
gender |
gender:
|
Type : string
|
grade |
grade:
|
Type : string
|
language |
language:
|
Type : string
|
lastName |
lastName:
|
Type : string
|
location |
location:
|
Type : string
|
loginId |
loginId:
|
Type : string
|
password |
password:
|
Type : string
|
phone |
phone:
|
Type : string
|
phoneVerified |
phoneVerified:
|
Type : any
|
position |
position:
|
Type : string
|
profileSummary |
profileSummary:
|
Type : string
|
provider |
provider:
|
Type : string
|
regOrgId |
regOrgId:
|
Type : string
|
roles |
roles:
|
Type : Array<string>
|
rootOrgId |
rootOrgId:
|
Type : string
|
subject |
subject:
|
Type : string
|
userId |
userId:
|
Type : string
|
userName |
userName:
|
Type : string
|
export interface IUserUploadStatusResponse {
objectType: string;
processId: string;
status: string;
successResult: Array<IUserUploadStatusResult>;
failureResult: Array<IUserUploadStatusResult>;
}
export interface IUserUploadStatusResult {
dob: string;
email: string;
emailVerified: string;
firstName: string;
gender: string;
grade: string;
language: string;
lastName: string;
location: string;
loginId: string;
password: string;
phone: string;
phoneVerified: any;
position: string;
profileSummary: string;
provider: string;
regOrgId: string;
roles: Array<string>;
rootOrgId: string;
subject: string;
userId: string;
userName: string;
}