Package ai.nexconn.chat.message.model
Class ReadReceiptUser
-
- All Implemented Interfaces:
public final class ReadReceiptUserRead receipt user information.
Contains the user ID and the time at which the user read the message.
-
-
Field Summary
Fields Modifier and Type Field Description private final StringuserIdprivate final Longtimestampprivate final BooleanisMentioned
-
Constructor Summary
Constructors Constructor Description ReadReceiptUser()
-
Method Summary
Modifier and Type Method Description final StringgetUserId()user ID final LonggetTimestamp()The time when this user read the message (Unix timestamp in milliseconds). final BooleanisMentioned()Whether this user was mentioned -
-
Method Detail
-
getUserId
final String getUserId()
user ID
-
getTimestamp
final Long getTimestamp()
The time when this user read the message (Unix timestamp in milliseconds). 0 indicates no read receipt was sent.
-
isMentioned
final Boolean isMentioned()
Whether this user was mentioned
-
-
-
-