botas-core
    Preparing search index...

    Interface ChannelAccount

    Represents a user or bot account in a channel.

    interface ChannelAccount {
        id: string;
        name?: string;
        aadObjectId?: string;
        role?: string;
        properties?: Record<string, unknown>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    id: string

    Unique identifier for the account.

    name?: string

    Display name of the account.

    aadObjectId?: string

    Azure Active Directory object ID.

    role?: string

    Role of the entity (e.g. "user", "bot").

    properties?: Record<string, unknown>

    Additional channel-specific properties.