spartaxx.businessmodels 1.0.149 → 1.0.150
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/QualifiedClientInfo.ts +13 -2
- package/package.json +1 -1
@@ -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
|
}
|