Interface UserMessage

interface UserMessage {
    entity?: string;
    guid?: string;
    message: StringAnyType;
    topic: string;
    type: "user";
}

Hierarchy

  • QuorumMessageBase
    • UserMessage

Properties

entity?: string
guid?: string
message: StringAnyType
topic: string
type: "user"