spartaxx.businessmodels 1.0.205 → 1.0.207
Sign up to get free protection for your applications and to get access to all the features.
@@ -4,6 +4,7 @@ import {
|
|
4
4
|
DatasetSelectOperation, DatasetFilterOperation, DatasetSortingOperation,
|
5
5
|
ApiMasterDatasetColumns
|
6
6
|
} from "../Masters/MasterModels";
|
7
|
+
import { ProtestingAccountInfo } from "../Protest/ProtestingAccountInfo";
|
7
8
|
|
8
9
|
export interface QualifiedClientResults {
|
9
10
|
TotalRecords?: number;
|
@@ -24,4 +25,11 @@ export interface QualifiedClientResults {
|
|
24
25
|
IsShowCriteriaTextbox?: boolean;
|
25
26
|
CriteriaName?: string;
|
26
27
|
FilterCriteriaSelectedValue?: ManageCampaignCriteriaLookup | null;
|
28
|
+
|
29
|
+
TotalCounties?: number;
|
30
|
+
TotalAccounts?: number;
|
31
|
+
TotalEmailModeCounties?: number;
|
32
|
+
TotalUSmailModeCounties?: number;
|
33
|
+
TotalOnlinePortalModeCounties?: number;
|
34
|
+
ProtestingAccountInfo?: ProtestingAccountInfo[];
|
27
35
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -54,6 +54,9 @@ export interface AppConfigHub {
|
|
54
54
|
CPckOOTCaliforniaPowerOfAttorneyTemplateBodyHtmlContentId?: string;
|
55
55
|
ESignLink?: string;
|
56
56
|
CPckFileName?: string;
|
57
|
+
CPckESignLink?:string;
|
58
|
+
CPckSalesCRMESignFromEmail?:string;
|
59
|
+
CPckSalesCRMESignSubject?: string;
|
57
60
|
|
58
61
|
//#endregion
|
59
62
|
|