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

    Interface AdaptiveCardSearchResult

    Represents a single search result item returned from an Adaptive Card search operation.

    This interface defines the structure for search results that are displayed to users when they perform searches within Adaptive Cards, such as typeahead or dropdown searches.

    const searchResult: AdaptiveCardSearchResult = {
    title: "John Doe",
    value: "john.doe@company.com"
    };
    interface AdaptiveCardSearchResult {
        title: string;
        value: string;
    }
    Index

    Properties

    Properties

    title: string

    The display text shown to the user in the search results.

    This is typically the human-readable label that appears in dropdowns, typeahead suggestions, or search result lists.

    "John Doe" or "Microsoft Teams - General Channel"
    
    value: string

    The underlying value associated with this search result.

    This is usually the actual data value that gets selected when the user chooses this result, such as an ID, email address, or other identifier.

    "john.doe@company.com" or "channel-id-12345"