export interface APIError {
    category?: string | null;
    code?: string | null;
    httpStatusCode?: number | null;
    id?: string | null;
    message?: string | null;
    propertyName?: string | null;
    requestId?: string | null;
}
