spartaxx.businessmodels 1.0.324 → 1.0.326
Sign up to get free protection for your applications and to get access to all the features.
- package/Campaign/ConciergeBlastInfo.ts +10 -15
- package/package.json +1 -1
@@ -1,18 +1,13 @@
|
|
1
1
|
export interface ConciergeBlastInfo {
|
2
|
-
ClientId?: number
|
3
|
-
ClientNumber?:
|
4
|
-
ClientName?:
|
5
|
-
MailingAddress?:
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
Remarks?: String;
|
10
|
-
Priority?: String;
|
11
|
-
AppointmentModeId?: number;
|
12
|
-
AppointmentDateTimeFrom?: Date;
|
13
|
-
AppointmentStatusId?: number;
|
2
|
+
ClientId?: number;
|
3
|
+
ClientNumber?: string;
|
4
|
+
ClientName?: string;
|
5
|
+
MailingAddress?: string;
|
6
|
+
EmailAddress?: string;
|
7
|
+
PhoneNumber?: string;
|
8
|
+
AppointmentDateTimeFrom?: string;
|
14
9
|
AppointmentLocation?: string;
|
15
|
-
|
16
|
-
|
17
|
-
|
10
|
+
Remarks?: string;
|
11
|
+
AccountId?: number;
|
12
|
+
AccountNumber?: string;
|
18
13
|
}
|