JSON RPC
JSON-RPC 2.0 library for C++
|
Represents a JSON RPC request. More...
#include <dispatcher_p.h>
Public Attributes | |
nlohmann::json | id |
The ID of the request. | |
std::string | jsonrpc |
The JSON RPC version. | |
std::string | method |
The name of the method to be invoked. | |
nlohmann::json | params |
The parameters for the method. | |
Represents a JSON RPC request.
This struct holds the components of a JSON RPC request, including the JSON RPC version, method name, parameters, and ID.
Definition at line 50 of file dispatcher_p.h.
nlohmann::json wwa::json_rpc::jsonrpc_request::id |
The ID of the request.
Definition at line 54 of file dispatcher_p.h.
std::string wwa::json_rpc::jsonrpc_request::jsonrpc |
The JSON RPC version.
Definition at line 51 of file dispatcher_p.h.
std::string wwa::json_rpc::jsonrpc_request::method |
The name of the method to be invoked.
Definition at line 52 of file dispatcher_p.h.
nlohmann::json wwa::json_rpc::jsonrpc_request::params |
The parameters for the method.
Definition at line 53 of file dispatcher_p.h.