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

    Represents a reference to a conversation.

    interface ConversationReference {
        activityId?: string;
        agent?: ChannelAccount | null;
        channelId: string;
        conversation: ConversationAccount;
        locale?: string;
        serviceUrl?: string;
        user?: ChannelAccount;
    }
    Index

    Properties

    activityId?: string

    The ID of the activity. Optional.

    agent?: ChannelAccount | null

    The agent involved in the conversation. Can be undefined or null. Optional.

    channelId: string

    The ID of the channel where the conversation is taking place.

    conversation: ConversationAccount

    The conversation account details.

    locale?: string

    The locale of the conversation. Optional.

    serviceUrl?: string

    The service URL for the conversation. Optional.

    The user involved in the conversation. Optional.