mentionsWithBlockedInfo method

MessagesRequestBuilder mentionsWithBlockedInfo(
  1. bool mentionsWithBlockedInfo
)

mentionsWithBlockedInfo fetch messages where any user is mentioned. The user object will contain the blockedByMe and blockedAt etc. properties of the mentioned user.

Implementation

MessagesRequestBuilder mentionsWithBlockedInfo(bool mentionsWithBlockedInfo){
  this._mentionsWithBlockedInfo = mentionsWithBlockedInfo;
  return this;
}