spartaxx.businessmodels 1.0.319 → 1.0.321
Sign up to get free protection for your applications and to get access to all the features.
@@ -3,7 +3,7 @@ import { TermsType } from "./TermsType"
|
|
3
3
|
export interface ClientSetupParam {
|
4
4
|
ClientSetupInfo: ClientSetupInfo;
|
5
5
|
QueueId: string;
|
6
|
-
isSocketRequest?:boolean;
|
6
|
+
isSocketRequest?: boolean;
|
7
7
|
}
|
8
8
|
|
9
9
|
export interface ClientSetupInfo {
|
@@ -88,7 +88,8 @@ export interface ClientSetupInfo {
|
|
88
88
|
TxrollOcaluc: string;
|
89
89
|
IsRendition: boolean;
|
90
90
|
IsFinancial: boolean;
|
91
|
-
ProjectName:string;
|
91
|
+
ProjectName: string;
|
92
|
+
AccountReasonId: number;
|
92
93
|
}
|
93
94
|
|
94
95
|
export interface SelectedPropertyList {
|
@@ -129,6 +130,12 @@ export interface SelectedPropertyList {
|
|
129
130
|
owneraddress2?: string;
|
130
131
|
owneraddress3?: string;
|
131
132
|
ProjectName?: string;
|
133
|
+
|
134
|
+
|
135
|
+
PropCityName: string;
|
136
|
+
PropAddress: string;
|
137
|
+
PropZipcode: string;
|
138
|
+
PropStateName: string;
|
132
139
|
}
|
133
140
|
|
134
141
|
export interface SelectedAllProperty {
|
@@ -140,8 +147,8 @@ export interface SelectedAllProperty {
|
|
140
147
|
|
141
148
|
export interface OnlineClientSetupMaster {
|
142
149
|
OnlineClientSetupInfo: OnlineClientSetupInfo
|
143
|
-
SelectedPropertyList: SelectedPropertyList[];
|
144
|
-
isSocketRequest?:boolean;
|
150
|
+
SelectedPropertyList: SelectedPropertyList[];
|
151
|
+
isSocketRequest?: boolean;
|
145
152
|
|
146
153
|
}
|
147
154
|
|
@@ -167,5 +174,5 @@ export interface OnlineClientSetupInfo {
|
|
167
174
|
AgentId: number;
|
168
175
|
ReferralEmployeeId?: number;
|
169
176
|
TxrollLegalDescription?: string;
|
170
|
-
SocketToken?:string;
|
177
|
+
SocketToken?: string;
|
171
178
|
}
|