Clio develop
The XRP Ledger API server.
|
The vault_info command retrieves information about a vault, currency, shares etc. More...
#include <VaultInfo.hpp>
Classes | |
struct | Input |
A struct to hold the input data for the command. More... | |
struct | Output |
A struct to hold the output data for the command. More... | |
Public Types | |
using | Result = HandlerReturnType<Output> |
Public Member Functions | |
VaultInfoHandler (std::shared_ptr< BackendInterface > const &sharedPtrBackend) | |
Construct a new VaultInfo object. | |
Result | process (Input input, Context const &ctx) const |
Process the VaultInfo command. | |
Static Public Member Functions | |
static RpcSpecConstRef | spec (uint32_t apiVersion) |
Returns the API specification for the command. | |
Friends | |
void | tag_invoke (boost::json::value_from_tag, boost::json::value &jv, VaultInfoHandler::Output const &output) |
Convert the Output to a JSON object. | |
Input | tag_invoke (boost::json::value_to_tag< Input >, boost::json::value const &jv) |
Convert a JSON object to Input type. | |
The vault_info command retrieves information about a vault, currency, shares etc.
rpc::VaultInfoHandler::VaultInfoHandler | ( | std::shared_ptr< BackendInterface > const & | sharedPtrBackend | ) |
Construct a new VaultInfo object.
sharedPtrBackend | The backend to use |
VaultInfoHandler::Result rpc::VaultInfoHandler::process | ( | VaultInfoHandler::Input | input, |
Context const & | ctx ) const |
Process the VaultInfo command.
input | The input data for the command |
ctx | The context of the request |
|
inlinestatic |
Returns the API specification for the command.
apiVersion | The api version to return the spec for |
|
friend |
Convert the Output to a JSON object.
jv | The JSON object to convert to |
output | The output to convert |