Type Alias Meta

Object containing meta data regarding an error. It does not necessarily contain all the properties.

type Meta = {
    message?: string;
    resourceName?: string;
    stack?: string;
}
Index

Properties

message?: string

A more detailed message explaining the error.

resourceName?: string

Name of the resource related to the error. If there is a conflict, it is the name of the model attempting to be created.

stack?: string

Full stack trace of the error that was raised.