JSON message interface

interface JsonMessage {
    msgId: string;
    mType: string;
    request: string;
    response: string[];
    timestamp: string;
}

Properties

msgId: string
mType: string
request: string
response: string[]
timestamp: string