spartaxx.businessmodels 1.0.321 → 1.0.323
Sign up to get free protection for your applications and to get access to all the features.
package/CCC/AccountInfo.js
CHANGED
package/CCC/AccountInfo.ts
CHANGED
@@ -72,6 +72,7 @@ export interface AccountInfo {
|
|
72
72
|
ReasonCode?: string;
|
73
73
|
AccountStateId?: number;
|
74
74
|
CountyStateName?: string;
|
75
|
+
selectedOption?: { value: string; label: string };
|
75
76
|
}
|
76
77
|
|
77
78
|
export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
@@ -147,6 +148,10 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
147
148
|
AccountSourceId: 0,
|
148
149
|
ReasonCode: "",
|
149
150
|
AccountStateId: 0,
|
150
|
-
CountyStateName: ""
|
151
|
+
CountyStateName: "",
|
152
|
+
selectedOption: {
|
153
|
+
value: "",
|
154
|
+
label: ""
|
155
|
+
}
|
151
156
|
};
|
152
157
|
}
|
@@ -1,6 +1,15 @@
|
|
1
1
|
import { CCCTemplateData } from "./CCCTemplateData";
|
2
|
+
import { ClientInputFormSteper } from "./ClientInputForm";
|
2
3
|
|
3
4
|
export interface NoticeOfProtestClientInfo {
|
5
|
+
NoticeOfProtestSteper?: NoticeOfProtestSteper[];
|
4
6
|
AdditionalAccount?: string;
|
5
7
|
CCCTemplateData?: CCCTemplateData;
|
6
|
-
|
8
|
+
ClientInputFormSteper?: ClientInputFormSteper[];
|
9
|
+
}
|
10
|
+
|
11
|
+
export interface NoticeOfProtestSteper {
|
12
|
+
Name: string;
|
13
|
+
IsCompleted: boolean;
|
14
|
+
}
|
15
|
+
|
@@ -3,12 +3,14 @@ import { ManageCampaignCriteria } from "./ManageCampaignCriteria";
|
|
3
3
|
import { ManageCampaignCriteriaLookup } from "./ManageCampaignCriteriaLookup";
|
4
4
|
import { CampaignFilterCriteria } from "./CampaignFilterCriteria";
|
5
5
|
import { CampaignFilterCriteriaFields } from "./CampaignFilterCriteriaFields";
|
6
|
+
import { ConciergeBlastInfo } from "./ConciergeBlastInfo";
|
6
7
|
|
7
8
|
export {
|
8
9
|
CampaignCriteria,
|
9
10
|
ManageCampaignCriteria,
|
10
11
|
ManageCampaignCriteriaLookup,
|
11
12
|
CampaignFilterCriteria,
|
12
|
-
CampaignFilterCriteriaFields
|
13
|
+
CampaignFilterCriteriaFields,
|
14
|
+
ConciergeBlastInfo
|
13
15
|
}
|
14
16
|
|
@@ -0,0 +1,18 @@
|
|
1
|
+
export interface ConciergeBlastInfo {
|
2
|
+
ClientId?: number
|
3
|
+
ClientNumber?: number;
|
4
|
+
ClientName?: String;
|
5
|
+
MailingAddress?: String;
|
6
|
+
Email?: String;
|
7
|
+
Phone?: String;
|
8
|
+
SelectProperty?: String;
|
9
|
+
Remarks?: String;
|
10
|
+
Priority?: String;
|
11
|
+
AppointmentModeId?: number;
|
12
|
+
AppointmentDateTimeFrom?: Date;
|
13
|
+
AppointmentStatusId?: number;
|
14
|
+
AppointmentLocation?: string;
|
15
|
+
CreateBy?: number;
|
16
|
+
CreatedDate?: Date;
|
17
|
+
SiteVisitProperty?: number;
|
18
|
+
}
|