spartaxx.businessmodels 1.0.142 → 1.0.143
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/AccountInfo.ts +11 -0
- package/CCC/ClientInfo.ts +11 -0
- package/package.json +1 -1
package/CCC/AccountInfo.ts
CHANGED
@@ -1,4 +1,15 @@
|
|
1
1
|
export interface AccountInfo {
|
2
|
+
ClientId?: number;
|
3
|
+
ClientEmail?: string;
|
4
|
+
FromEmail?: string;
|
5
|
+
DispositionNotificationTo?: string;
|
6
|
+
ReturnReceiptTo?: string;
|
7
|
+
EmailSubject?:string;
|
8
|
+
Homestead?: boolean;
|
9
|
+
NeedAgreement?: number;
|
10
|
+
NeedAofA?: number;
|
11
|
+
NeedBAAofA?: number;
|
12
|
+
StartDate?:string;
|
2
13
|
AccountNumber?: string;
|
3
14
|
CadLegalName?: string;
|
4
15
|
LegalDescription?: string;
|
package/CCC/ClientInfo.ts
CHANGED
@@ -1,4 +1,15 @@
|
|
1
1
|
export interface ClientInfo {
|
2
|
+
ClientId?: number;
|
3
|
+
ClientEmail?: string;
|
4
|
+
FromEmail?: string;
|
5
|
+
DispositionNotificationTo?: string;
|
6
|
+
ReturnReceiptTo?: string;
|
7
|
+
EmailSubject?:string;
|
8
|
+
Homestead?: boolean;
|
9
|
+
NeedAgreement?: number;
|
10
|
+
NeedAofA?: number;
|
11
|
+
NeedBAAofA?: number;
|
12
|
+
StartDate?:string;
|
2
13
|
AccountNumber?: string;
|
3
14
|
CadLegalName?: string;
|
4
15
|
LegalDescription?: string;
|