interface SocketResponse {
    request: SocketRequest;
    error: Error;
    status: string;
    userId: string;
    data: RequestData;
}

Properties

request: SocketRequest

The initial request

error: Error

An error, if one occurred

status: string

The status of the request

userId: string

The ID of the requesting User

Data returned as a result of the request