resurgence-data 1.0.12 → 1.0.13
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,9 +1,12 @@
|
|
1
1
|
export interface InviteCreateModel {
|
2
2
|
userId: string;
|
3
3
|
emailAddress: string;
|
4
|
+
firstName: string;
|
5
|
+
lastName: string;
|
4
6
|
billerId: string;
|
5
7
|
token: string;
|
6
8
|
status?: string;
|
9
|
+
role: string;
|
7
10
|
}
|
8
11
|
export interface InviteUpdateModel extends InviteCreateModel {
|
9
12
|
id: string;
|