public class GroupsMembersListResult extends Object
Modifier and Type | Field and Description |
---|---|
protected String |
cursor |
protected boolean |
hasMore |
protected List<GroupMemberInfo> |
members |
Constructor and Description |
---|
GroupsMembersListResult(List<GroupMemberInfo> members,
String cursor,
boolean hasMore) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
String |
getCursor()
Pass the cursor into
DbxTeamTeamRequests.groupsMembersListContinue(String) to obtain
additional group members. |
boolean |
getHasMore()
Is true if there are additional group members that have not been returned
yet.
|
List<GroupMemberInfo> |
getMembers() |
int |
hashCode() |
String |
toString() |
String |
toStringMultiline()
Returns a String representation of this object formatted for easier
readability.
|
protected final List<GroupMemberInfo> members
protected final String cursor
protected final boolean hasMore
public GroupsMembersListResult(List<GroupMemberInfo> members, String cursor, boolean hasMore)
members
- Must not contain a null
item and not be null
.cursor
- Pass the cursor into DbxTeamTeamRequests.groupsMembersListContinue(String)
to obtain
additional group members. Must not be null
.hasMore
- Is true if there are additional group members that have
not been returned yet. An additional call to DbxTeamTeamRequests.groupsMembersListContinue(String)
can retrieve
them.IllegalArgumentException
- If any argument does not meet its
preconditions.public List<GroupMemberInfo> getMembers()
null
.public String getCursor()
DbxTeamTeamRequests.groupsMembersListContinue(String)
to obtain
additional group members.null
.public boolean getHasMore()
DbxTeamTeamRequests.groupsMembersListContinue(String)
can retrieve them.public String toStringMultiline()
The returned String may contain newlines.