teleproto - v1.229.0
    Preparing search index...

    Interface StoriesGetStoryViewsListParams

    interface StoriesGetStoryViewsListParams {
        forwardsFirst?: boolean;
        id: number;
        justContacts?: boolean;
        limit: number;
        offset: string;
        peer: EntityLike;
        q?: string;
        reactionsFirst?: boolean;
    }
    Index
    forwardsFirst?: boolean

    If set, returns forwards and reposts first, then reactions, then other views; otherwise returns interactions sorted just by interaction date.

    id: number

    Story ID

    justContacts?: boolean

    Whether to only fetch view reaction/views made by our contacts

    limit: number

    Maximum number of results to return, see pagination

    offset: string

    Offset for pagination, obtained from stories.storyViewsList . next_offset

    peer: EntityLike

    Peer where the story was posted

    q?: string

    Search for specific peers

    reactionsFirst?: boolean

    Whether to return storyView info about users that reacted to the story (i.e. if set, the server will first sort results by view date as usual, and then also additionally sort the list by putting storyView s with an associated reaction first in the list). Ignored if forwards_first is set.