@archastro/sdk
    Preparing search index...

    Interface ActivityFeedEntryListResponse

    A paginated list of activity feed entries returned by a feed query, with cursors for navigating backward and forward through results.

    interface ActivityFeedEntryListResponse {
        after_cursor?: string;
        before_cursor?: string;
        entries: ActivityFeedEntry[];
        has_more: boolean;
    }
    Index

    Properties

    after_cursor?: string

    Opaque cursor to pass as after to retrieve the next page of entries. null when this is the last page.

    before_cursor?: string

    Opaque cursor to pass as before to retrieve the previous page of entries. null when this is the first page.

    Array of activity feed entry objects for the current page, ordered by time descending.

    has_more: boolean

    Whether additional entries exist beyond the current page. When true, use after_cursor to fetch the next page.