Type Alias ServiceError

type ServiceError = {
    code?: string;
    detail?: string;
    meta?: Meta;
    title?: string;
}
Index

Properties

code?: string

Code is a unique identifier for this error class.

detail?: string
meta?: Meta
title?: string