RPCRequestBody(name: MutableList<String>, type: RPCRequestType, args: MutableList<Any>)
name
- the function to be in invoked. If the function is in a namespace, the first n-1 items in the array are the namespace followed by the function name (e.g. 'blobs.get' becomes ['blobs', 'get']). If the function is not in a namespace, it is an array with one item (e.g. ['createFeedStream'].
type
- the type of the request (e.g. stream or async.)
args
- The args passed to the function being invoked. Each item can be any arbitrary object which is JSON serializable (e.g. String, Int, list, object.)