blob: a0920a90260c30fd94a4728caba20debf7cd0fbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
export class AuditStatus{
id: number;
createdDate: number;
final: boolean;
jobId :string;
jobStatus :string;
source: string;
requestId: string;
additionalInfo :any;
instanceName: string;
instanceType : string;
}
|