Interface IServerError
Represents a server error.
Namespace: BiExcellence.OpenBi.Api.Commands.Configurator
Assembly: BiExcellence.OpenBi.Api.Configurator.dll
Syntax
public interface IServerError
Properties
Date
Gets the date.
Declaration
[ApiField("DATE")]
DateTimeOffset Date { get; }
Property Value
Type | Description |
---|---|
DateTimeOffset |
Extra
Gets the extra information.
Declaration
[ApiField("EXTRA")]
string? Extra { get; }
Property Value
Type | Description |
---|---|
string |
InnerMessage
Gets the inner message.
Declaration
[ApiField("INNER_MESSAGE")]
string? InnerMessage { get; }
Property Value
Type | Description |
---|---|
string |
InnerStackTrace
Gets the inner stack trace.
Declaration
[ApiField("INNER_STACKTRACE")]
string? InnerStackTrace { get; }
Property Value
Type | Description |
---|---|
string |
Message
Gets the message.
Declaration
[ApiField("MESSAGE")]
string Message { get; }
Property Value
Type | Description |
---|---|
string |
StackTrace
Gets the stack trace.
Declaration
[ApiField("STACKTRACE")]
string? StackTrace { get; }
Property Value
Type | Description |
---|---|
string |
UserId
Gets the user id (can be null
).
Declaration
[ApiField("USER")]
string? UserId { get; }
Property Value
Type | Description |
---|---|
string |