@archastro/sdk
    Preparing search index...

    Interface PaginatedReplies

    A paginated list of reply messages for a thread. The reply array is returned directly, not nested inside a data wrapper.

    interface PaginatedReplies {
        after_cursor?: string;
        before_cursor?: string;
        has_more?: boolean;
        replies: Message[];
        total_count?: number;
    }
    Index

    Properties

    after_cursor?: string

    Opaque cursor to pass as the pagination cursor to retrieve the page of replies that follow this one. null when no further pages exist.

    before_cursor?: string

    Opaque cursor to pass as the pagination cursor to retrieve the page of replies that precede this one. null when no earlier pages exist.

    has_more?: boolean

    Whether additional reply pages exist beyond the current page.

    replies: Message[]

    Array of reply message objects for the current page.

    total_count?: number

    Total number of replies in the thread across all pages.