Interface ICommandResponse

interface ICommandResponse {
    message: string;
    replyToCommandRequestId: string;
    streamName?: string;
    streamType?: keyof IStreamTypeMap;
    success: boolean;
    tags?: ITags;
    time: string;
}

Properties

message: string
replyToCommandRequestId: string
streamName?: string
streamType?: keyof IStreamTypeMap
success: boolean
tags?: ITags
time: string

Generated using TypeDoc