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.
32 lines
555 B
32 lines
555 B
1 year ago
|
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[]
|
||
|
}
|