Class JsonRpcErrorData
- Namespace
- Geotab.Checkmate.ObjectModel.Web
- Assembly
- Geotab.Checkmate.ObjectModel.dll
The implementation specific error data for a JSON-RPC request error.
public class JsonRpcErrorData
- Inheritance
-
JsonRpcErrorData
- Inherited Members
Remarks
The nuget package API object throws JsonRpcError results as dotnet exceptions, as a result, these properties will populated in the Data property as key/value pair with key "JsonRpcErrorData".
Constructors
JsonRpcErrorData()
public JsonRpcErrorData()
Properties
Id
Gets or sets the error instance identifier.
public string? Id { get; set; }
Property Value
Info
Gets or sets a primitive or structured value that contains additional information about the error.
public string? Info { get; set; }
Property Value
RequestIndex
Gets or sets the index of the request in a "multicall" at which a failure occurred, otherwise [null].
public int? RequestIndex { get; set; }
Property Value
Type
Gets or sets the type of error.
public string? Type { get; set; }