Unblu Floating JS API
    Preparing search index...

    Interface ConversationInfo

    interface ConversationInfo {
        creationTimestamp: number;
        id: string;
        myParticipationType: ConversationParticipationType;
        notificationCount: number;
        otherParticipants: [ConversationParticipant];
        recipient: ConversationRecipient;
        state: ConversationState;
        topic?: string;
        visitorData?: string;
    }
    Index

    Properties

    creationTimestamp: number

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

    id: string

    The ID of the conversation.

    myParticipationType: ConversationParticipationType

    Participation type of the current person in this conversation

    notificationCount: number

    Notification count of this conversation.

    otherParticipants: [ConversationParticipant]

    All other participants of this conversation

    The current recipient of this conversation

    Conversation state.

    topic?: string

    Topic of this conversation; null if not set

    visitorData?: string

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