interface ErrorResponse {
    LogId: string;
    Meldungen: ErrorReport[];
    ParentLogId: string;
    Result: null;
    StatusCode: StatusCode;
    Werte?: null | Record<string, unknown>;
}

Hierarchy (View Summary)

Properties

LogId: string
Meldungen: ErrorReport[]
ParentLogId: string
Result: null
StatusCode: StatusCode
Werte?: null | Record<string, unknown>