spartaxx.businessmodels 1.0.148 → 1.0.150
Sign up to get free protection for your applications and to get access to all the features.
package/CCC/CCCModel.ts
CHANGED
@@ -7,6 +7,7 @@ import { ClientInfo } from "./ClientInfo";
|
|
7
7
|
import { AccountInfo } from "./AccountInfo";
|
8
8
|
import { CCCTemplateData } from "./CCCTemplateData";
|
9
9
|
import { Client } from "./Client";
|
10
|
+
import { BlastCountyPriority } from "./BlastCountyPriority";
|
10
11
|
|
11
12
|
export {
|
12
13
|
ScoreCardDetails,
|
@@ -17,5 +18,6 @@ export {
|
|
17
18
|
ClientInfo,
|
18
19
|
AccountInfo,
|
19
20
|
CCCTemplateData,
|
20
|
-
Client
|
21
|
+
Client,
|
22
|
+
BlastCountyPriority
|
21
23
|
}
|
@@ -8,16 +8,27 @@ export interface QualifiedClientInfo {
|
|
8
8
|
TaxYear?: number;
|
9
9
|
Mode?: string;
|
10
10
|
DeliveryAddress?: string;
|
11
|
+
|
11
12
|
IsNeedAgreement?: boolean;
|
13
|
+
IsAgreementGenerated?: boolean;
|
14
|
+
|
12
15
|
IsHomeStead?: boolean;
|
13
16
|
IsNeedAofAExpirtationForm?: boolean;
|
17
|
+
IsNeedAofAExpirtationFormGenerated?: boolean;
|
14
18
|
IsNeedConsentForm?: boolean;
|
19
|
+
IsNeedConsentFormGenerated?: boolean;
|
15
20
|
IsNeedAofA?: boolean;
|
21
|
+
IsNeedAofAGenerated?: boolean;
|
22
|
+
|
16
23
|
IsNeedBAAofA?: boolean;
|
24
|
+
IsNeedBAAofAGenerated?: boolean;
|
25
|
+
|
17
26
|
IsNeedPropertySurveyForm?: boolean;
|
27
|
+
IsNeedPropertySurveyFormGenerated?: boolean;
|
28
|
+
|
18
29
|
BlastStatusId?: number;
|
19
|
-
|
30
|
+
|
20
31
|
ResidentailAccounts?: number;
|
21
32
|
CommercialAccounts?: number;
|
22
|
-
TotalAccounts?:number;
|
33
|
+
TotalAccounts?: number;
|
23
34
|
}
|