stories.getPeerMaxIDs
Get the IDs of the maximum read stories for a set of peers.
func (c *Client) StoriesGetPeerMaxIDs(ctx context.Context, id []InputPeerClass) ([]RecentStory, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.StoriesGetPeerMaxIDs(ctx, id)
if err != nil {
return err
}
_ = res // []RecentStory
return nil
})
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ID | []InputPeerClass | yes | Peers |
Returns
References
- Official documentation
- Generated Go reference
- TL definition:
stories.getPeerMaxIDs#78499170