You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
555 B
31 lines
555 B
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[]
|
|
}
|
|
|