botas-core
    Preparing search index...

    Interface TeamsChannelAccount

    Teams-extended channel account with additional user properties.

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

    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.

    userPrincipalName?: string

    User principal name (email).

    email?: string

    Email address.