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 StringendPagination token for the end of the chunk.private List<Event>eventsAfterEvents just after the result.private List<Event>eventsBeforeEvents just before the result.private Map<String,Profile>profileInfoThe historic profile information of the users that sent the events returned.private StringstartPagination token for the start of the chunk.
-
Constructor Summary
Constructors Constructor Description EventContextResponse()
-
Method Summary
Modifier and Type Method Description StringgetEnd()List<Event>getEventsAfter()List<Event>getEventsBefore()Map<String,Profile>getProfileInfo()StringgetStart()voidsetEnd(String end)voidsetEventsAfter(List<Event> eventsAfter)voidsetEventsBefore(List<Event> eventsBefore)voidsetProfileInfo(Map<String,Profile> profileInfo)voidsetStart(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.
-
-