Jsonrpc.Response (finch_jsonrpc v0.1.0) View Source

Jsonrpc.Response represents a JSONRPC 2.0 response, as documented in the JSON-RPC 2.0 specification

Link to this section Summary

Link to this section Types

Specs

t() :: %Jsonrpc.Response{
  error: Jsonrpc.Error.t() | nil,
  id: String.t() | integer() | nil,
  jsonrpc: String.t(),
  result: any() | nil
}