spartaxx.businessmodels 1.0.128 → 1.0.130
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/CCCModel.ts +3 -1
- package/CCC/QualifiedClientInfo.js +2 -0
- package/CCC/QualifiedClientInfo.ts +11 -0
- package/package.json +1 -1
package/CCC/CCCModel.ts
CHANGED
@@ -1,7 +1,9 @@
|
|
1
1
|
import { ScoreCardDetails } from "./ScoreCardDetails";
|
2
2
|
import { ScoreCardSummary } from "./ScoreCardSummary";
|
3
|
+
import { QualifiedClientInfo } from "./QualifiedClientInfo";
|
3
4
|
|
4
5
|
export {
|
5
6
|
ScoreCardDetails,
|
6
|
-
ScoreCardSummary
|
7
|
+
ScoreCardSummary,
|
8
|
+
QualifiedClientInfo
|
7
9
|
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
export interface QualifiedClientInfo {
|
2
|
+
ClientId?: number;
|
3
|
+
ClientNumber?: string;
|
4
|
+
ClassificationType?: string;
|
5
|
+
TotalAccounts?: number;
|
6
|
+
ResidentialCounts?: number;
|
7
|
+
CommercialCounts?: number;
|
8
|
+
Homestead?: number;
|
9
|
+
Mode?: string;
|
10
|
+
DeliveryAddress?: string;
|
11
|
+
}
|