spartaxx.businessmodels 1.0.340 → 1.0.342
Sign up to get free protection for your applications and to get access to all the features.
@@ -19,6 +19,7 @@ export interface QualifiedClientInfo {
|
|
19
19
|
InitiatedBy?: number;
|
20
20
|
CCCPckEmailBlastFileName?: string;
|
21
21
|
CCCPckEmailBlastOutputFilePath?: string;
|
22
|
+
ClientSignature?: string;
|
22
23
|
}
|
23
24
|
|
24
25
|
export async function createDefaultQualifiedClientInfo(): Promise<QualifiedClientInfo> {
|
@@ -42,6 +43,7 @@ export async function createDefaultQualifiedClientInfo(): Promise<QualifiedClien
|
|
42
43
|
IsSelected: false,
|
43
44
|
InitiatedBy: 0,
|
44
45
|
CCCPckEmailBlastFileName: "",
|
45
|
-
CCCPckEmailBlastOutputFilePath: ""
|
46
|
+
CCCPckEmailBlastOutputFilePath: "",
|
47
|
+
ClientSignature: ""
|
46
48
|
};
|
47
49
|
};
|
@@ -1,4 +1,5 @@
|
|
1
1
|
export interface PwProcessDocumentDetails {
|
2
|
+
Guid: string;
|
2
3
|
FileCabinetId: number;
|
3
4
|
BatchCode: string;
|
4
5
|
DocumentType: string;
|
@@ -14,8 +15,13 @@ export interface PwProcessDocumentDetails {
|
|
14
15
|
LandUseCode: string;
|
15
16
|
DocumentStatus: string;
|
16
17
|
DocumentRouteTo: string;
|
18
|
+
IsValidateEsign: boolean;
|
19
|
+
ValidateEsignDocumentPath: string;
|
20
|
+
ValidateEsignIPAddress: string;
|
21
|
+
ValidateEsignSigneeName: string;
|
22
|
+
ValidateEsignSigneeEmail: string;
|
23
|
+
ValidateEsignSignature: Buffer;
|
17
24
|
DocumentPath: string;
|
18
25
|
CreatedApp: string;
|
19
26
|
UserId: number;
|
20
|
-
PW_ProcessDocumentId: number;
|
21
27
|
}
|