Unblu Agent Embedded JS API
    Preparing search index...

    Interface BotParticipantHistoryData

    Information about a bot participant in a conversation (with historical information)

    interface BotParticipantHistoryData {
        activationTimestamp?: number;
        createdTimestamp: number;
        hidden: boolean;
        joinedTimestamp?: number;
        leftTimestamp?: number;
        offboardingTimestamp?: number;
        person: PersonData;
        personId: string;
        state: ParticipationState;
    }
    Index

    Properties

    activationTimestamp?: number

    Unix timestamp (ms) when the participation was activated, that is, when their participation state was set to ParticipationState.ACTIVE. null if the participation was never activated.

    createdTimestamp: number

    Unix timestamp (ms) when the person participation was created and their participation state was set to ParticipationState.CREATED

    hidden: boolean

    Indicates whether the bot's participation is hidden in the current conversation

    joinedTimestamp?: number

    Unix timestamp (ms) when the person joined, that is, when their participation state was set to ParticipationState.ONBOARDING. null if the participation never joined.

    leftTimestamp?: number

    Unix timestamp (ms) when the person left, that is, when their participation state was set to ParticipationState.ENDED). null if the participation didn't finish its offboarding.

    offboardingTimestamp?: number

    Unix timestamp (ms) when the person started offboarding, that is, when their participation state was set to ParticipationState.OFFBOARDING. null if the participation never started its offboarding.

    person: PersonData

    The bot person

    personId: string

    The bot's personID

    The bot's last participation state he had, if left, or has in the conversation