Member Junction
    Preparing search index...

    Interface AccountSearchResult

    Result from a single account's search attempt

    interface AccountSearchResult {
        accountID: string;
        accountName: string;
        errorMessage?: string;
        hasMore: boolean;
        nextPageToken?: string;
        providerID: string;
        providerName: string;
        results: FileSearchResult[];
        success: boolean;
        totalMatches?: number;
    }
    Index

    Properties

    accountID: string

    Account ID

    accountName: string

    Account name for display

    errorMessage?: string

    Error message if search failed or provider doesn't support search

    hasMore: boolean

    Whether there are more results available

    nextPageToken?: string

    Pagination token for this account

    providerID: string

    Provider ID

    providerName: string

    Provider name for display

    results: FileSearchResult[]

    Search results (empty array if failed)

    success: boolean

    Whether this account's search succeeded

    totalMatches?: number

    Total matches from this account