Table of Contents

Interface IApiInnerError

Namespace
GroupeIsa.Neos.Designer.UIAbstractions.API.Response
Assembly
GroupeIsa.Neos.Designer.UIAbstractions.dll

Represents an inner error send by an API.

public interface IApiInnerError

Properties

Detail

Gets a human-readable explanation specific to this occurrence of the problem.

string? Detail { get; }

Property Value

string

Extensions

Gets a dictionnary of extension members.

IDictionary<string, object> Extensions { get; }

Property Value

IDictionary<string, object>

Instance

Gets a URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced. Can be relative to the URI defined in the Type property.

string? Instance { get; }

Property Value

string

Technical

Gets a value indicating whether the error message is technical or not. Technical error messages are not displayed to users.

bool Technical { get; }

Property Value

bool

Title

Gets a short, human-readable summary of the problem type.

string Title { get; }

Property Value

string

Type

Gets a URI reference [RFC3986] that identifies the problem type.

string Type { get; }

Property Value

string