Interface ErrorEnvelope

interface ErrorEnvelope {
    code: string;
    message: string;
    requestId: null | string;
    detail: unknown;
}

Properties

code: string
message: string
requestId: null | string
detail: unknown