Class ResponseError
Represents an error response object returned by the API.
Inherited Members
Namespace: Innovt.AspNetCore.Model
Assembly: Innovt.AspNetCore.dll
Syntax
public class ResponseError
Properties
| Edit this page View SourceCode
Gets or sets an error code associated with the error (optional).
Declaration
public string Code { get; set; }
Property Value
Type | Description |
---|---|
string |
Detail
Gets or sets additional error details.
Declaration
public object Detail { get; set; }
Property Value
Type | Description |
---|---|
object |
Message
Gets or sets a message describing the error.
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
string |
TraceId
Gets or sets a unique identifier for tracing the error.
Declaration
public string TraceId { get; set; }
Property Value
Type | Description |
---|---|
string |