Documentation - v1.2.0-alpha.3
    Preparing search index...

    Represents a conversation account.

    interface ConversationAccount {
        aadObjectId?: string;
        conversationType?: string;
        id: string;
        isGroup?: boolean;
        name?: string;
        properties?: unknown;
        role?: string;
        tenantId?: string;
    }
    Index

    Properties

    aadObjectId?: string

    The Azure Active Directory object ID of the conversation account.

    conversationType?: string

    The type of the conversation (e.g., personal, group, etc.).

    id: string

    The unique identifier of the conversation account.

    isGroup?: boolean

    Indicates whether the conversation is a group.

    name?: string

    The name of the conversation account.

    properties?: unknown

    Additional properties of the conversation account.

    role?: string

    The role of the conversation account.

    tenantId?: string

    The tenant ID associated with the conversation account.