ReadParticipantDate

class pyrogram.raw.base.ReadParticipantDate

Contains info about when a certain participant has read a message

Constructors:

This base type has 1 constructor available.

ReadParticipantDate

Contains info about when a certain participant has read a message

Functions:

This object can be returned by 1 function.

messages.GetMessageReadParticipants

Get which users read a specific message: only available for groups and supergroups with less than chat_read_mark_size_threshold members, read receipts will be stored for chat_read_mark_expire_period seconds after the message was sent, see client configuration for more info ».

TL Schema

readParticipantDate#4a4ff172
user_id:long
date:int

= ReadParticipantDate

Parameter Tree

ReadParticipantDate
├── user_idlong
└── dateint

Example

ReadParticipantDate(
    user_id=0,
    date=0,
)