Skip to content

stories.getStoryViewsList

Layer 225

Constructor ID: 0x7ed23c57
Returns: StoryViewsList

Parameters

NameTypeDescription
just_contactsbool (flags.0, optional)
reactions_firstbool (flags.2, optional)
forwards_firstbool (flags.3, optional)
peerInputPeer
qstring (flags.1, optional)
idint32
offsetstring
limitint32

Example

go
result, err := client.Raw(&tg.GetStoryViewsListRequest{
    just_contacts: false,
    reactions_first: false,
    forwards_first: false,
    peer: nil, // InputPeer
    q: "",
    id: 0,
    offset: "",
    limit: 0,
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.