spartaxx.businessmodels 1.0.320 → 1.0.321
Sign up to get free protection for your applications and to get access to all the features.
- package/ClientSetup/ClientSetupParam.ts +11 -10
- package/package.json +1 -1
@@ -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 {
|
@@ -130,11 +131,11 @@ export interface SelectedPropertyList {
|
|
130
131
|
owneraddress3?: string;
|
131
132
|
ProjectName?: string;
|
132
133
|
|
133
|
-
|
134
|
-
PropCityName:string;
|
135
|
-
PropAddress:string;
|
136
|
-
PropZipcode:string;
|
137
|
-
PropStateName:string;
|
134
|
+
|
135
|
+
PropCityName: string;
|
136
|
+
PropAddress: string;
|
137
|
+
PropZipcode: string;
|
138
|
+
PropStateName: string;
|
138
139
|
}
|
139
140
|
|
140
141
|
export interface SelectedAllProperty {
|
@@ -146,8 +147,8 @@ export interface SelectedAllProperty {
|
|
146
147
|
|
147
148
|
export interface OnlineClientSetupMaster {
|
148
149
|
OnlineClientSetupInfo: OnlineClientSetupInfo
|
149
|
-
SelectedPropertyList: SelectedPropertyList[];
|
150
|
-
isSocketRequest?:boolean;
|
150
|
+
SelectedPropertyList: SelectedPropertyList[];
|
151
|
+
isSocketRequest?: boolean;
|
151
152
|
|
152
153
|
}
|
153
154
|
|
@@ -173,5 +174,5 @@ export interface OnlineClientSetupInfo {
|
|
173
174
|
AgentId: number;
|
174
175
|
ReferralEmployeeId?: number;
|
175
176
|
TxrollLegalDescription?: string;
|
176
|
-
SocketToken?:string;
|
177
|
+
SocketToken?: string;
|
177
178
|
}
|