UNPKG

@slmdevs/celeraone

Version:

This is a NPM Package to use for all the CeleraOne interactions.

15 lines (14 loc) 289 B
/** * The interface for the User response object * * @interface UserResponse */ export default interface UserResponse { userId: string; login: string; accountState: string; socialSecurityNumber: number; firstName: string; lastName: string; email: string; }