/// A Structured value that holds the parameter values to be used during the invocation of the
/// method.
#[cfg_attr(feature ="serde",derive(serde::Deserialize))]#[derive(Debug)]pubstructJsonRpcNotificationParams<R>{/// Payload
pubresult: R,
/// Identifier returned by the counterpart
pubsubscription:u64,
}