ts-algochat
    Preparing search index...

    Interface PaginatedTransactions

    Paginated transaction search result.

    Wraps the transactions with an optional nextToken for cursor-based pagination. When nextToken is present, more results are available.

    interface PaginatedTransactions {
        nextToken?: string;
        transactions: NoteTransaction[];
    }
    Index

    Properties

    nextToken?: string

    Opaque cursor for fetching the next page. Absent when no more results.

    transactions: NoteTransaction[]

    The transactions in this page.