|
Clio
develop
The XRP Ledger API server.
|
The account_mptoken_issuances method returns information about all MPTokenIssuance objects the account has created. More...
#include <AccountMPTokenIssuances.hpp>
Classes | |
| struct | Input |
| A struct to hold the input data for the command. More... | |
| struct | MPTokenIssuanceResponse |
| A struct to hold data for one MPTokenIssuance response. More... | |
| struct | Output |
| A struct to hold the output data of the command. More... | |
Public Types | |
| using | Result = HandlerReturnType<Output> |
Public Member Functions | |
| AccountMPTokenIssuancesHandler (std::shared_ptr< BackendInterface > sharedPtrBackend) | |
| Construct a new AccountMPTokenIssuancesHandler object. | |
| Result | process (Input const &input, Context const &ctx) const |
| Process the AccountMPTokenIssuances command. | |
Static Public Member Functions | |
| static RpcSpecConstRef | spec (uint32_t apiVersion) |
| Returns the API specification for the command. | |
Static Public Attributes | |
| static constexpr auto | kLIMIT_MIN = 10 |
| static constexpr auto | kLIMIT_MAX = 400 |
| static constexpr auto | kLIMIT_DEFAULT = 200 |
Friends | |
| void | tag_invoke (boost::json::value_from_tag, boost::json::value &jv, AccountMPTokenIssuancesHandler::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. | |
| void | tag_invoke (boost::json::value_from_tag, boost::json::value &jv, AccountMPTokenIssuancesHandler::MPTokenIssuanceResponse const &issuance) |
| Convert the MPTokenIssuanceResponse to a JSON object. | |
The account_mptoken_issuances method returns information about all MPTokenIssuance objects the account has created.
|
inline |
Construct a new AccountMPTokenIssuancesHandler object.
| sharedPtrBackend | The backend to use. |
| AccountMPTokenIssuancesHandler::Result rpc::AccountMPTokenIssuancesHandler::process | ( | AccountMPTokenIssuancesHandler::Input const & | input, |
| Context const & | ctx ) const |
Process the AccountMPTokenIssuances 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 MPTokenIssuanceResponse to a JSON object.
| [out] | jv | The JSON object to convert to |
| issuance | The MPTokenIssuance response to convert |
|
friend |
Convert the Output to a JSON object.
| [out] | jv | The JSON object to convert to |
| output | The output to convert |