src/app/modules/daily-processing/models/i-processing-info.ts
Properties |
| AchInfo |
AchInfo:
|
Type : any
|
| BatchInfoSummaryUri |
BatchInfoSummaryUri:
|
Type : string
|
| BatchInfoUri |
BatchInfoUri:
|
Type : string
|
| BatchManifestUrl |
BatchManifestUrl:
|
Type : string
|
| BatchName |
BatchName:
|
Type : string
|
| FiSummary |
FiSummary:
|
Type : any
|
| HealthChecks |
HealthChecks:
|
Type : any[]
|
| HealthCheckSummary |
HealthCheckSummary:
|
Type : HealthCheckSummary
|
| MessagesToSendUrl |
MessagesToSendUrl:
|
Type : string
|
| Name |
Name:
|
Type : string
|
| PaymentInfo |
PaymentInfo:
|
Type : any
|
| ProcessingDate |
ProcessingDate:
|
Type : string
|
| SkippedPayments |
SkippedPayments:
|
Type : any
|
export interface HealthCheckSummary {
HealthCheckStatus: string;
HealthCheckDescription: string;
}
export interface ProcessingRunInfo {
Name: string;
BatchName: string;
ProcessingDate: string;
BatchManifestUrl: string;
MessagesToSendUrl: string;
HealthChecks: any[];
AchInfo: any;
FiSummary: any;
PaymentInfo: any;
SkippedPayments: any;
HealthCheckSummary: HealthCheckSummary;
BatchInfoUri: string;
BatchInfoSummaryUri: string;
}
export interface AchSummary {
name?: string;
credit?: any;
debit?: any;
NetworkSend?: any;
}
export interface InfoEntry {
cutOff?: string;
AchSummary: AchSummary;
ProcessingRunInfo: ProcessingRunInfo[];
ProcessingRunSummary: any[];
}
export interface ProcessingInfo {
entries: InfoEntry[];
}