コード例 #1
0
 /**
  * Mark a notification as read
  *
  * @param userId The user's ID
  * @return The user's notifications
  */
 public Response markNotificationAsRead(long userId, @SessionToken String sessionToken) {
   checkId(userId);
   return mUserInterface.markNotificationAsRead(userId, sessionToken);
 }