@archastro/sdk
    Preparing search index...

    Interface Actor

    The entity that authored a message, either a human user or an agent.

    interface Actor {
        alias?: string;
        id?: string;
        name?: string;
        profile_picture?: ImageSource;
    }
    Index

    Properties

    alias?: string

    Short handle or alias for the actor, used as an alternate display identifier. null if not configured.

    id?: string

    Composite actor identifier. Format is "user-<usr_...>" for human users or "agent-<agi_...>" for agents.

    name?: string

    Display name of the actor shown in the UI. null if no name is set.

    profile_picture?: ImageSource

    Profile picture for the actor. null if the actor has no profile picture.