Sinch Node.js SDK - v1.5.0
    Preparing search index...

    Interface Agent

    Represents an agent that is involved in a conversation.

    interface Agent {
        display_name: string;
        picture_url?: string;
        type: "UNKNOWN_AGENT_TYPE" | "HUMAN" | "BOT";
    }
    Index

    Properties

    display_name: string

    Agent's display name

    picture_url?: string

    The Agent's picture url.

    type: "UNKNOWN_AGENT_TYPE" | "HUMAN" | "BOT"

    Agent's classification. It can be UNKNOWN_AGENT_TYPE, HUMAN or BOT.