src/app/modules/daily-processing/models/i-desired-manifest-entry.ts
Properties |
| amount |
amount:
|
Type : string
|
| BatchUri |
BatchUri:
|
Type : string
|
| definition$ |
definition$:
|
Type : Observable<IProcessingRunDefinition>
|
| Optional |
| exceptions |
exceptions:
|
Type : string
|
| fiCount |
fiCount:
|
Type : number
|
| ProcessingExecutionName |
ProcessingExecutionName:
|
Type : string
|
| ProcessingRunDefinitionUrl |
ProcessingRunDefinitionUrl:
|
Type : string
|
| status |
status:
|
Type : string
|
| time |
time:
|
Type : string
|
import { Observable } from 'rxjs';
import { IProcessingRunDefinition } from './i-processing-run-definition';
export interface IDesiredManifestEntry {
BatchUri: string;
ProcessingExecutionName: string;
ProcessingRunDefinitionUrl: string;
// would like these in the json file
time: string;
status: string;
fiCount: number;
amount: string;
exceptions: string;
// hack
definition$?: Observable<IProcessingRunDefinition>;
}