JsonRPCRequest

data class JsonRPCRequest(jsonrpc: String, id: Int, method: String, params: List<JsonRPCParam>)

JSON-RPC request

Constructors

JsonRPCRequest
Link copied to clipboard
common
fun JsonRPCRequest(jsonrpc: String = "2.0", id: Int, method: String, params: List<JsonRPCParam> = emptyList())

Properties

id
Link copied to clipboard
common
val id: Int
jsonrpc
Link copied to clipboard
common
val jsonrpc: String
method
Link copied to clipboard
common
val method: String
params
Link copied to clipboard
common
val params: List<JsonRPCParam>