@slmdevs/celeraone
Version:
This is a NPM Package to use for all the CeleraOne interactions.
16 lines (15 loc) • 358 B
TypeScript
import PasswordType from '../../Users/PasswordType';
/**
* The user interface for the Import process
*
* @interface UserInterface
*/
export default interface UserInterface {
contractorId: string;
socialSecurityNumber: string;
email: string;
firstName: string;
lastName: string;
passwordType: PasswordType;
password: string;
}