Type Alias PublicApiError

Standard error response object with code, title, and details.

type PublicApiError = {
    code: string;
    detail?: string;
    meta?: unknown;
    title: string;
}
Index

Properties

Properties

code: string

Unique DCaaS error code (for example, DCAAS-2001).

detail?: string
meta?: unknown
title: string