export interface IUserResponseInterface { customerStatus: string email: string firstName: string merchantID: string roles: string[] status: string tel: string userID: string } export interface IMerchantResponseInterface { abbreviation: string merchantID: string name: string industry: string status: string } export interface INewUserInterface { email: string pwd: string firstName: string lastName: string merchantID: string role: string tel: string customerStatus: string status: string roles: string[] }