botas-core
    Preparing search index...

    Interface ConversationParameters

    Parameters used to create a new conversation.

    interface ConversationParameters {
        isGroup?: boolean;
        bot?: ChannelAccount;
        members?: ChannelAccount[];
        topicName?: string;
        tenantId?: string;
        activity?: Partial<CoreActivity>;
        channelData?: unknown;
    }
    Index

    Properties

    isGroup?: boolean

    Whether to create a group conversation.

    Bot account to include in the conversation.

    members?: ChannelAccount[]

    Initial member list.

    topicName?: string

    Optional topic name.

    tenantId?: string

    Tenant ID.

    activity?: Partial<CoreActivity>

    Initial activity to post when the conversation is created.

    channelData?: unknown

    Channel-specific data.