rpcArrayParams

Methods marked with this attribute will see its parameters rendered as an array (if applicable by the protocol).

@property @safe
rpcArrayParams
()

Examples

interface IAPI
{
    @rpcArrayParams
    void submit(string hash);
    // In json-rpc params will be rendered as: "params": ["dZf4F"]
}

Meta