public static RpcResponse Result(RequestId id, object result) => new RpcResponse(id, result, null);
RpcResponse(RequestId id, object result, Exception exception) { this.Id = id; this.result = result; this.Exception = exception; }