Class GroupValue
- java.lang.Object
-
- io.github.ma1uta.matrix.client.model.search.GroupValue
-
public class GroupValue extends Object
Group value.
-
-
Field Summary
Fields Modifier and Type Field Description private String
nextBatch
Token that can be used to get the next batch of results in the group, by passing as the next_batch parameter to the next call.private Long
order
Key that can be used to order different groups.private List<String>
results
Which results are in this group.
-
Constructor Summary
Constructors Constructor Description GroupValue()
-
Method Summary
Modifier and Type Method Description String
getNextBatch()
Long
getOrder()
List<String>
getResults()
void
setNextBatch(String nextBatch)
void
setOrder(Long order)
void
setResults(List<String> results)
-
-
-
Field Detail
-
nextBatch
private String nextBatch
Token that can be used to get the next batch of results in the group, by passing as the next_batch parameter to the next call. If this field is absent, there are no more results in this group.
-
order
private Long order
Key that can be used to order different groups.
-
-