Interface AgentProfile

Profile information about a specific agent that can be used to display information to the user. This may represent a human agent or a virtual/bot agent.

interface AgentProfile {
    hidden?: boolean;
    id: string;
    nickname: string;
    profile_picture_url?: string;
}

Properties

hidden?: boolean

Indicates if the agent's profile information should be hidden. This will hide the entire avatar line including the agent name, avatar and timestamp.

id: string

A unique identifier for this agent.

nickname: string

The visible name for the agent. Can be the full name or just a first name.

profile_picture_url?: string

An url pointing to an avatar for the agent.

MMNEPVFCICPMFPCPTTAAATR