pgator

JSON-RPC 2.0 Protocol

This module contain JSON-RPC 2.0  request

See Also
http://www.jsonrpc.org/specification
License
Subject to the terms of the MIT license, as written in the included LICENSE file.
Authors
Zaramzan

struct  RpcRequest;

structure describes JSON-RPC 2.0 request

Example

auto req = RpcRequest(json);
writefln("id=%s method=%s params:%s", req.id, req.method, req.params);

Authors
Zaramzan