20 lines
406 B
TypeScript
20 lines
406 B
TypeScript
import { Type as UserType} from "@/interfaces/user";
|
|
|
|
export type Type = Exclude<UserType, "admin" | "developer" | "agent" | "mastercorporate">;
|
|
|
|
export interface UserImport {
|
|
id: string;
|
|
email: string;
|
|
name: string;
|
|
passport_id: string;
|
|
type?: Type;
|
|
groupName: string;
|
|
entity?: string;
|
|
studentID: string;
|
|
demographicInformation: {
|
|
country: string;
|
|
passport_id: string;
|
|
phone: string;
|
|
};
|
|
}
|