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

    Type Alias BroadcastToRoomReq

    BroadcastToRoomReq: Message<"plugnmeet.BroadcastToRoomReq"> & {
        roomId: string;
        onlyToAdmins: boolean;
        toUserId?: string;
        payload:
            | { value: BroadcastToRoomChatMessage; case: "chatMsg" }
            | { value: BroadcastToRoomNotificationMsg; case: "notificationMsg" }
            | { case: undefined; value?: undefined };
    }

    Type Declaration

    • roomId: string

      from field: string room_id = 1;

    • onlyToAdmins: boolean

      from field: bool only_to_admins = 2;

    • OptionaltoUserId?: string

      from field: optional string to_user_id = 3;

    • payload:
          | { value: BroadcastToRoomChatMessage; case: "chatMsg" }
          | { value: BroadcastToRoomNotificationMsg; case: "notificationMsg" }
          | { case: undefined; value?: undefined }

      from oneof plugnmeet.BroadcastToRoomReq.payload

    from message plugnmeet.BroadcastToRoomReq