src/app/modules/daily-processing/models/i-processing-info.ts
Properties |
entries |
entries:
|
Type : InfoEntry[]
|
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[];
}