spartaxx.businessmodels 1.0.312 → 1.0.313
Sign up to get free protection for your applications and to get access to all the features.
package/CCC/ClientInputForm.ts
CHANGED
@@ -1,40 +1,40 @@
|
|
1
|
-
export interface DMpropertySurveyClientInfo {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
1
|
+
export interface DMpropertySurveyClientInfo {
|
2
|
+
AccountNumber?: string;
|
3
|
+
AccountId?: number;
|
4
|
+
ClientNumber?: string;
|
5
|
+
ClientName?: string;
|
6
|
+
ClientId?: number;
|
7
|
+
PropertyAddr?: string;
|
8
|
+
County?: string;
|
9
|
+
CountyId?: number;
|
10
|
+
TaxYear?: number;
|
11
|
+
BuildingSqFT?: number;
|
12
|
+
BuildingValue?: number;
|
13
|
+
LandSqFT?: number;
|
14
|
+
LandValue?: number;
|
15
|
+
YearBuilt?: number;
|
16
|
+
RemodelYear?: number;
|
17
|
+
Grade?: string;
|
18
|
+
CDU?: string;
|
19
|
+
HOMvalueOpinion?: string;
|
20
|
+
OwnerOccupied?: string;
|
21
|
+
HomeSoldLast24months?: string;
|
22
|
+
SoldListingPrice?: string;
|
23
|
+
HasStructureFloodedBefore?: string;
|
24
|
+
HowManyTimes?: number;
|
25
|
+
LastFloodingDate?: Date;
|
26
|
+
StillConditionIssues?: string;
|
27
|
+
Remarks?: string;
|
28
|
+
Remodeled?: string;
|
29
|
+
RemodeledType?: string;
|
30
|
+
ActionID?: number;
|
31
|
+
ActionType?: string;
|
32
|
+
IsPropertyInFloodZone?: string;
|
33
|
+
RepairsForCurrentTaxYear?: string;
|
34
|
+
AllDamageRepaired?: string;
|
35
|
+
HomeInsuranceCoverage?: string;
|
36
|
+
PleaseDescribe?: string;
|
37
|
+
AnyAtypicalCharacteristics?: string;
|
38
|
+
AdditionalComments?: string;
|
39
|
+
PropertyDetailsId?: number;
|
40
40
|
}
|