spartaxx.businessmodels 1.0.238 → 1.0.239
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -125,4 +125,33 @@ export interface SelectedAllProperty {
|
|
125
125
|
County: string;
|
126
126
|
AccountNumber: string;
|
127
127
|
StateCode: string;
|
128
|
+
}
|
129
|
+
|
130
|
+
export interface OnlineClientSetupMaster {
|
131
|
+
OnlineClientSetupInfo: OnlineClientSetupInfo
|
132
|
+
SelectedPropertyList: SelectedPropertyList[];
|
133
|
+
}
|
134
|
+
|
135
|
+
export interface OnlineClientSetupInfo {
|
136
|
+
FirstName?: string;
|
137
|
+
LastName?: string;
|
138
|
+
Email?: string;
|
139
|
+
HomePhone?: string;
|
140
|
+
County?: string;
|
141
|
+
OwnerAddress?: string;
|
142
|
+
OwnerCityName?: string;
|
143
|
+
OwnerStateName?: string;
|
144
|
+
OwnerZipcode?: string;
|
145
|
+
AccountNumber?: string;
|
146
|
+
PropertyType?: string;
|
147
|
+
ClientSourceId?: number;
|
148
|
+
Enrollmentyear?: number;
|
149
|
+
EntryId?: string;
|
150
|
+
FromSiteName?: string;
|
151
|
+
QrId?: string;
|
152
|
+
IsMultipleproperty?: string;
|
153
|
+
EnrollmentyearInfo?: string;
|
154
|
+
AgentId: number;
|
155
|
+
ReferralEmployeeId?: number;
|
156
|
+
TxrollLegalDescription?: string;
|
128
157
|
}
|