Unblu Floating JS API
    Preparing search index...

    Interface ConversationInfo

    interface ConversationInfo {
        assigneeId?: string;
        contextPersonId: string;
        creationTimestamp: number;
        ended: boolean;
        id: string;
        notificationCount: number;
        recipient: string;
        topic?: string;
        visitorData?: string;
    }
    Index

    Properties

    assigneeId?: string

    The Id of the assignee person (typically an agent). May be null if no agent is part of the conversation yet.

    contextPersonId: string

    The Id of the context person (typically the visitor).

    creationTimestamp: number

    Conversation creation timestamp in milliseconds elapsed since January 1, 1970 00:00:00 UTC.

    ended: boolean

    Conversation is ended.

    id: string

    The Id of the conversation.

    notificationCount: number

    Notification count of this conversation.

    recipient: string

    The name of the current recipient of the conversation.

    topic?: string

    Topic of the conversation, may be null if not set.

    visitorData?: string

    The custom visitor data of the conversation. Null if not set.