spartaxx.businessmodels 1.0.23 → 1.0.25
Sign up to get free protection for your applications and to get access to all the features.
- package/ClientSetup/ClientSetupParameters.js +2 -0
- package/ClientSetup/ClientSetupParameters.ts +80 -0
- package/ClientSetup/SelectedPropertyList.js +2 -0
- package/ClientSetup/SelectedPropertyList.ts +6 -0
- package/Protest/ProtestAccountsCountywise.ts +10 -0
- package/Protest/ProtestHistoryInfo.ts +0 -1
- package/package.json +1 -1
@@ -0,0 +1,80 @@
|
|
1
|
+
import { SelectedPropertyList } from "./SelectedPropertyList"
|
2
|
+
import { TermsType } from "./TermsType"
|
3
|
+
|
4
|
+
export interface ClientSetupParameters {
|
5
|
+
ClientName: string,
|
6
|
+
Email: string,
|
7
|
+
PasswordEncrypted: string,
|
8
|
+
PasswordOrg: string,
|
9
|
+
ClientSourceId: number,
|
10
|
+
TaxYear: number,
|
11
|
+
UserId: number,
|
12
|
+
IPAddress: string,
|
13
|
+
OwnerCityId: number,
|
14
|
+
OwnerCityName: string,
|
15
|
+
OwnerStateId: number,
|
16
|
+
OwnerStateName: string,
|
17
|
+
FirstName: string,
|
18
|
+
LastName: string,
|
19
|
+
HomePhone: string,
|
20
|
+
OwnerAddress: string,
|
21
|
+
OwnerZipcode: string,
|
22
|
+
CountyId: number,
|
23
|
+
CountyName: string,
|
24
|
+
CountyCode: string,
|
25
|
+
PropStateName: string,
|
26
|
+
PropStateId: number,
|
27
|
+
PropertyType: string,
|
28
|
+
AccountNumber: string,
|
29
|
+
Township: string,
|
30
|
+
PropCityId: number,
|
31
|
+
PropCityName: string,
|
32
|
+
PropAddress: string,
|
33
|
+
PropZipcode: string,
|
34
|
+
IsPropertyNotFound: boolean,
|
35
|
+
Enrollmentyear: number,
|
36
|
+
IsVerified: boolean,
|
37
|
+
SelectedPropertyList: SelectedPropertyList[],
|
38
|
+
Signup2025: boolean,
|
39
|
+
AgentTypeId: number,
|
40
|
+
AgentId: number,
|
41
|
+
HotelTeamSalesAgentId: number,
|
42
|
+
ReferralEmployeeId: number,
|
43
|
+
EntryId: string,
|
44
|
+
IsSpanishFlag: boolean,
|
45
|
+
ClientSetupId: number,
|
46
|
+
ClientStatusId: number,
|
47
|
+
PhoneTypeId: number,
|
48
|
+
AltPhoneNumber: string,
|
49
|
+
AltPhoneTypeId: number,
|
50
|
+
AltIsVerified: boolean,
|
51
|
+
OwnerAddress2: string,
|
52
|
+
OwnerAddress3: string,
|
53
|
+
CompanyName: string,
|
54
|
+
TxrollCadId: number,
|
55
|
+
TxrollLegalDescription: string,
|
56
|
+
TxrollParcelId: string,
|
57
|
+
TxrollLandSize: number,
|
58
|
+
TxrollGba: number,
|
59
|
+
TxrollYearBuilt: number,
|
60
|
+
TxrollOwnerName: string,
|
61
|
+
TxrollClassCode: string,
|
62
|
+
TxrollNeighborhoodCode: string,
|
63
|
+
TxrollNra: number,
|
64
|
+
TxrollGrade: string,
|
65
|
+
TxrollEconomicArea: number,
|
66
|
+
TxrollSubDivi: string,
|
67
|
+
TxrollLandUseCode: string,
|
68
|
+
Stories: string,
|
69
|
+
CDU: string,
|
70
|
+
TxrollNoticedLandValue: number,
|
71
|
+
TxrollNoticedImprovedValue: number,
|
72
|
+
TxrollNoticedMarketValue: number,
|
73
|
+
TxrollNoticedTotalValue: number,
|
74
|
+
TxrollExemptionCode: string,
|
75
|
+
TxrollJurisdictionCode: string,
|
76
|
+
ParishId: number,
|
77
|
+
Texas: TermsType[],
|
78
|
+
IL: TermsType[],
|
79
|
+
BPP: TermsType[]
|
80
|
+
}
|