Interface RequestMessage

This interface represents the request the client sends to the server

interface RequestMessage {
    client_request: string;
    input: any;
}

Properties

client_request: string
input: any