spartaxx.businessmodels 1.0.16 → 1.0.17
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,26 +1,26 @@
|
|
1
1
|
export interface ProtestHistoryInfo {
|
2
|
-
ProtestFilingId
|
3
|
-
CountyName
|
4
|
-
TaxYear
|
5
|
-
FilingDate
|
6
|
-
ProtestedBy
|
7
|
-
AccountProtested
|
8
|
-
DeliveryMethodId
|
9
|
-
ProtestStatus
|
10
|
-
AuditStatus
|
11
|
-
HB201Status
|
12
|
-
ProtestLetterPath
|
13
|
-
ProtestLetterPWImageId
|
14
|
-
ProtestHB201LetterPath
|
15
|
-
ProtestHB201LetterPWImageId
|
16
|
-
ProtestExcelFilePath
|
17
|
-
HB201RequestDate
|
18
|
-
BatchNumber
|
19
|
-
HB201USPSNumber
|
20
|
-
ProtestLetterUSPSNumber
|
21
|
-
CountyId
|
22
|
-
ModeId
|
23
|
-
ProtestStatusId
|
24
|
-
MinIndexValue
|
25
|
-
MaxIndexValue
|
2
|
+
ProtestFilingId?: number;
|
3
|
+
CountyName?: string;
|
4
|
+
TaxYear?: number;
|
5
|
+
FilingDate?: string;
|
6
|
+
ProtestedBy?: string;
|
7
|
+
AccountProtested?: number;
|
8
|
+
DeliveryMethodId?: number;
|
9
|
+
ProtestStatus?: string;
|
10
|
+
AuditStatus?: string;
|
11
|
+
HB201Status?: string;
|
12
|
+
ProtestLetterPath?: string;
|
13
|
+
ProtestLetterPWImageId?: number;
|
14
|
+
ProtestHB201LetterPath?: string;
|
15
|
+
ProtestHB201LetterPWImageId?: number;
|
16
|
+
ProtestExcelFilePath?: string;
|
17
|
+
HB201RequestDate?: string;
|
18
|
+
BatchNumber?: string;
|
19
|
+
HB201USPSNumber?: string;
|
20
|
+
ProtestLetterUSPSNumber?: string
|
21
|
+
CountyId?: number;
|
22
|
+
ModeId?: number;
|
23
|
+
ProtestStatusId?: number;
|
24
|
+
MinIndexValue?: number;
|
25
|
+
MaxIndexValue?: number;
|
26
26
|
}
|
package/package.json
CHANGED