Class APIError
Represents an error returned by the API.
public class APIError
- Inheritance
-
APIError
- Inherited Members
Properties
ErrorCode
The error code.
[JsonPropertyName("errorCode")]
public string ErrorCode { get; set; }
Property Value
Id
The unique identifier for the error instance.
[JsonPropertyName("id")]
public string Id { get; set; }
Property Value
Message
The error message.
[JsonPropertyName("message")]
public string Message { get; set; }
Property Value
Scope
The scope of the error.
[JsonPropertyName("scope")]
public string Scope { get; set; }
Property Value
Title
The title of the error.
[JsonPropertyName("title")]
public string Title { get; set; }