jsonrpc_response.go 244 B

1234567
  1. package jsonrpclite
  2. type rpcResponse struct {
  3. id any //The id of the response which was from the request.
  4. isError bool //True when the result is an error, otherwise is the result.
  5. result any //The result or error of the response.
  6. }