spartaxx.businessmodels 1.0.212 → 1.0.214
Sign up to get free protection for your applications and to get access to all the features.
package/CCC/AccountInfo.ts
CHANGED
package/CCC/ClientInfo.ts
CHANGED
@@ -23,24 +23,24 @@ export interface ClientInfo {
|
|
23
23
|
ContactLastName?: string;
|
24
24
|
ContactFax?: string;
|
25
25
|
ContactStateCode?: string;
|
26
|
-
ItIsCommercialClient?:
|
27
|
-
IsNeedAgreement?:
|
26
|
+
ItIsCommercialClient?: number;
|
27
|
+
IsNeedAgreement?: number;
|
28
28
|
TotalPropertyCount?: number;
|
29
29
|
TotalResPropertyCount?: number;
|
30
30
|
TotalComPropertyCount?: number;
|
31
|
-
IsNeedAofA?:
|
32
|
-
IsNeedAofAExpirtationForm?:
|
33
|
-
IsHomeStead?:
|
34
|
-
IsNeedConsentForm?:
|
31
|
+
IsNeedAofA?: number;
|
32
|
+
IsNeedAofAExpirtationForm?: number;
|
33
|
+
IsHomeStead?: number;
|
34
|
+
IsNeedConsentForm?: number;
|
35
35
|
TotalAofAPropertyCount?: number;
|
36
36
|
TotalAofAResPropertyCount?: number;
|
37
37
|
TotalAofAComPropertyCount?: number;
|
38
|
-
IsNeedBAAofA?:
|
38
|
+
IsNeedBAAofA?: number;
|
39
39
|
TotalBAAofAPropertyCount?: number;
|
40
40
|
TotalBAAofAResPropertyCount?: number;
|
41
41
|
TotalBAAofAComPropertyCount?: number;
|
42
|
-
IsHasResidentialAccount?:
|
43
|
-
IsNeedPropertySurveyForm?:
|
42
|
+
IsHasResidentialAccount?: number;
|
43
|
+
IsNeedPropertySurveyForm?: number;
|
44
44
|
ESignLink?: string;
|
45
45
|
ClientEmail?: string;
|
46
46
|
ClientAddress?: string;
|
@@ -1,14 +1,17 @@
|
|
1
|
-
import { DatasetSortingOperation } from "Masters/
|
1
|
+
import { DatasetSortingOperation, DatasetFilterOperation } from "Masters/MasterModels";
|
2
2
|
|
3
3
|
export interface ProtestAccountParam {
|
4
|
+
IsSelectedAll?:boolean;
|
5
|
+
OffsetValue?: number;
|
6
|
+
FetchRecordsCounts?: number;
|
7
|
+
DatasetSortingOperation?: DatasetSortingOperation;
|
8
|
+
DatasetFilterOperation?: DatasetFilterOperation[];
|
9
|
+
ItIsFilterSearch?: boolean;
|
10
|
+
|
4
11
|
CountyId?: number;
|
5
12
|
TaxYear?: number;
|
6
13
|
ModeId?: number;
|
7
14
|
PropertyType?: string;
|
8
|
-
OffsetValue?: number;
|
9
|
-
FetchRecordsCounts?: number;
|
10
|
-
DatasetSortingOperation?: DatasetSortingOperation;
|
11
|
-
IsSelectedAll?:boolean;
|
12
15
|
SelectedCounties?: number[];
|
13
16
|
LUC?:string;
|
14
17
|
NoticeValueMin?:number;
|