plugNmeet JS SDK - v2.0.3
    Preparing search index...

    Type Alias ChatMessage

    ChatMessage: Message<"plugnmeet.ChatMessage"> & {
        id: string;
        fromName: string;
        fromUserId: string;
        sentAt: string;
        toUserId?: string;
        isPrivate: boolean;
        message: string;
        fromAdmin: boolean;
        sourceLang?: string;
        translations: { [key: string]: string };
    }

    Type Declaration

    • id: string

      from field: string id = 1;

    • fromName: string

      from field: string from_name = 2;

    • fromUserId: string

      from field: string from_user_id = 3;

    • sentAt: string

      from field: int64 sent_at = 4 [jstype = JS_STRING];

    • OptionaltoUserId?: string

      from field: optional string to_user_id = 5;

    • isPrivate: boolean

      from field: bool is_private = 6;

    • message: string

      from field: string message = 7;

    • fromAdmin: boolean

      from field: bool from_admin = 8;

    • OptionalsourceLang?: string

      from field: optional string source_lang = 9;

    • translations: { [key: string]: string }

      from field: map<string, string> translations = 10;

    from message plugnmeet.ChatMessage