Class SubscribeChannelsRequest


public class SubscribeChannelsRequest extends JsonrpcRequest
Represents a JSON-RPC Request to subscribe to Channels.

This is used by UI to get regular updates on specific channels.

 {
   "jsonrpc": "2.0",
   "id": "UUID",
   "method": "subscribeChannels",
   "params": {
     "count": number // Request-Counter: the higher count wins
     "channels": string[]
   }
 }