spartaxx.businessmodels 1.0.42 → 1.0.44
Sign up to get free protection for your applications and to get access to all the features.
- package/Protest/PTBexarExcelDocument.js +2 -0
- package/Protest/PTBexarExcelDocument.ts +12 -0
- package/Protest/ProtestHB201RequestDocument.js +2 -0
- package/Protest/ProtestHB201RequestDocument.ts +15 -0
- package/Protest/ProtestModels.ts +4 -1
- package/Protest/ProtestPTFayetteDocument.js +2 -0
- package/Protest/ProtestPTFayetteDocument.ts +18 -0
- package/package.json +1 -1
@@ -0,0 +1,12 @@
|
|
1
|
+
export interface PTBexarExcelDocument {
|
2
|
+
TaxYear: number;
|
3
|
+
ProtestFilingDate: string;
|
4
|
+
AccountNumber: string;
|
5
|
+
PropertyAddress: string;
|
6
|
+
LegalDescription: string;
|
7
|
+
CADLegalName: string;
|
8
|
+
LUC: string;
|
9
|
+
AgentCode: string;
|
10
|
+
HB201: string;
|
11
|
+
MarketEquityOther: string;
|
12
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
export interface ProtestHB201RequestDocument {
|
2
|
+
DocDate: string;
|
3
|
+
TaxYear: number;
|
4
|
+
AccountListingTable: AccountListingTable[];
|
5
|
+
}
|
6
|
+
|
7
|
+
export interface AccountListingTableHeaders {
|
8
|
+
AccountNumber: string;
|
9
|
+
Address: string;
|
10
|
+
}
|
11
|
+
|
12
|
+
export interface AccountListingTable {
|
13
|
+
Headers: AccountListingTableHeaders[];
|
14
|
+
Rows: string[];
|
15
|
+
}
|
package/Protest/ProtestModels.ts
CHANGED
@@ -2,5 +2,8 @@ import { ProtestDocuments } from "./ProtestDocuments";
|
|
2
2
|
import { ProtestHistoryInfo } from "./ProtestHistoryInfo";
|
3
3
|
import { ProtestPropertyInfo } from "./ProtestPropertyInfo";
|
4
4
|
import { ProtestingAccounts } from "./ProtestingAccounts";
|
5
|
+
import { ProtestPTFayetteDcoument } from "./ProtestPTFayetteDocument";
|
6
|
+
import { ProtestHB201RequestDocument } from "./ProtestHB201RequestDocument";
|
7
|
+
import { PTBexarExcelDocument } from "./PTBexarExcelDocument";
|
5
8
|
|
6
|
-
export { ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts };
|
9
|
+
export { ProtestDocuments, ProtestHistoryInfo, ProtestPropertyInfo, ProtestingAccounts, ProtestPTFayetteDcoument, ProtestHB201RequestDocument, PTBexarExcelDocument };
|
@@ -0,0 +1,18 @@
|
|
1
|
+
export interface ProtestPTFayetteDcoument {
|
2
|
+
DocDate: string;
|
3
|
+
NoOfAccounts:number,
|
4
|
+
TaxYear:number;
|
5
|
+
AccountListingTable: AccountListingTable[];
|
6
|
+
}
|
7
|
+
|
8
|
+
export interface AccountListingTableHeaders {
|
9
|
+
AccountNumber: string;
|
10
|
+
Address: string;
|
11
|
+
LegalDescription: string;
|
12
|
+
CADLegalName: string;
|
13
|
+
}
|
14
|
+
|
15
|
+
export interface AccountListingTable {
|
16
|
+
Headers: AccountListingTableHeaders[];
|
17
|
+
Rows: string[];
|
18
|
+
}
|