Class EventContextResponse
- java.lang.Object
-
- io.github.ma1uta.matrix.client.model.search.EventContextResponse
-
public class EventContextResponse extends Object
Event context.
-
-
Field Summary
Fields Modifier and Type Field Description private String
end
Pagination token for the end of the chunk.private List<Event>
eventsAfter
Events just after the result.private List<Event>
eventsBefore
Events just before the result.private Map<String,Profile>
profileInfo
The historic profile information of the users that sent the events returned.private String
start
Pagination token for the start of the chunk.
-
Constructor Summary
Constructors Constructor Description EventContextResponse()
-
Method Summary
Modifier and Type Method Description String
getEnd()
List<Event>
getEventsAfter()
List<Event>
getEventsBefore()
Map<String,Profile>
getProfileInfo()
String
getStart()
void
setEnd(String end)
void
setEventsAfter(List<Event> eventsAfter)
void
setEventsBefore(List<Event> eventsBefore)
void
setProfileInfo(Map<String,Profile> profileInfo)
void
setStart(String start)
-
-
-
Field Detail
-
start
private String start
Pagination token for the start of the chunk.
-
end
private String end
Pagination token for the end of the chunk.
-
profileInfo
private Map<String,Profile> profileInfo
The historic profile information of the users that sent the events returned. The string key is the user ID for which the profile belongs to.
-
-