Class NotificationResponse
- java.lang.Object
- 
- io.github.ma1uta.matrix.client.model.push.NotificationResponse
 
- 
 public class NotificationResponse extends Object JSON body response for push notifications.
- 
- 
Field SummaryFields Modifier and Type Field Description private StringnextTokenThe token to supply in the from param of the next /notifications request in order to request more events.private List<Notification>notificationsRequired.
 - 
Constructor SummaryConstructors Constructor Description NotificationResponse()
 - 
Method SummaryModifier and Type Method Description StringgetNextToken()List<Notification>getNotifications()voidsetNextToken(String nextToken)voidsetNotifications(List<Notification> notifications)
 
- 
- 
- 
Field Detail- 
nextTokenprivate String nextToken The token to supply in the from param of the next /notifications request in order to request more events. If this is absent, there are no more results.
 - 
notificationsprivate List<Notification> notifications Required. The list of events that triggered notifications.
 
- 
 - 
Method Detail- 
getNextTokenpublic String getNextToken() 
 - 
setNextTokenpublic void setNextToken(String nextToken) 
 - 
getNotificationspublic List<Notification> getNotifications() 
 - 
setNotificationspublic void setNotifications(List<Notification> notifications) 
 
- 
 
-