Documentation - v1.2.0-alpha.3
    Preparing search index...

    Interface ConversationParameters

    Represents the parameters for creating a conversation.

    interface ConversationParameters {
        activity: Activity;
        agent?: ChannelAccount;
        channelData: unknown;
        isGroup: boolean;
        members?: ChannelAccount[];
        tenantId?: string;
        topicName?: string;
    }
    Index

    Properties

    activity: Activity

    The initial activity to send to the conversation.

    The bot account initiating the conversation.

    channelData: unknown

    Channel-specific data for the conversation.

    isGroup: boolean

    Indicates whether the conversation is a group conversation.

    members?: ChannelAccount[]

    The members to include in the conversation.

    tenantId?: string

    The tenant ID of the conversation.

    topicName?: string

    The topic name of the conversation.