Type Alias ErrorResponse500

type ErrorResponse500 = {
    errors?: {
        code?: string;
        detail?: string;
        meta?: unknown;
        title?: string;
    }[];
    traceId?: string;
}
Index

Properties

Properties

errors?: { code?: string; detail?: string; meta?: unknown; title?: string }[]
traceId?: string