Member Junction
    Preparing search index...

    Search results for a single account

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

    Properties

    accountId: string

    The account ID

    accountName: string

    The account name

    errorMessage?: string

    Error message if search failed

    hasMore: boolean

    Whether there are more results

    nextPageToken?: string

    Token for pagination

    results: FileSearchResult[]

    Search results

    success: boolean

    Whether the search was successful

    totalMatches?: number

    Total matches found