Interface CreateChatMeta

interface CreateChatMeta {
    avatar: string;
    bot_id_list: string[];
    chat_mode: "group";
    chat_type: "private" | "public";
    description: string;
    external: boolean;
    i18n_names: TranslationMap;
    join_message_visibility: ChatPermission;
    leave_message_visibility: ChatPermission;
    membership_approval: "no_approval_required" | "approval_required";
    name: string;
    owner_id: string;
    user_id_list: string[];
}

Hierarchy (view full)

Properties

avatar: string
bot_id_list: string[]
chat_mode: "group"
chat_type: "private" | "public"
description: string
external: boolean
i18n_names: TranslationMap
join_message_visibility: ChatPermission
leave_message_visibility: ChatPermission
membership_approval: "no_approval_required" | "approval_required"
name: string
owner_id: string
user_id_list: string[]

Generated using TypeDoc