Package com.dropbox.core.v2.team
Class GroupsListResult
- java.lang.Object
- 
- com.dropbox.core.v2.team.GroupsListResult
 
- 
 public class GroupsListResult extends java.lang.Object
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.lang.Stringcursorprotected java.util.List<GroupSummary>groupsprotected booleanhasMore
 - 
Constructor SummaryConstructors Constructor Description GroupsListResult(java.util.List<GroupSummary> groups, java.lang.String cursor, boolean hasMore)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetCursor()Pass the cursor intoDbxTeamTeamRequests.groupsListContinue(String)to obtain the additional groups.java.util.List<GroupSummary>getGroups()booleangetHasMore()Is true if there are additional groups that have not been returned yet.inthashCode()java.lang.StringtoString()java.lang.StringtoStringMultiline()Returns a String representation of this object formatted for easier readability.
 
- 
- 
- 
Field Detail- 
groupsprotected final java.util.List<GroupSummary> groups 
 - 
cursorprotected final java.lang.String cursor 
 - 
hasMoreprotected final boolean hasMore 
 
- 
 - 
Constructor Detail- 
GroupsListResultpublic GroupsListResult(java.util.List<GroupSummary> groups, java.lang.String cursor, boolean hasMore) - Parameters:
- groups- Must not contain a- nullitem and not be- null.
- cursor- Pass the cursor into- DbxTeamTeamRequests.groupsListContinue(String)to obtain the additional groups. Must not be- null.
- hasMore- Is true if there are additional groups that have not been returned yet. An additional call to- DbxTeamTeamRequests.groupsListContinue(String)can retrieve them.
- Throws:
- java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
 
 
- 
 - 
Method Detail- 
getGroupspublic java.util.List<GroupSummary> getGroups() - Returns:
- value for this field, never null.
 
 - 
getCursorpublic java.lang.String getCursor() Pass the cursor intoDbxTeamTeamRequests.groupsListContinue(String)to obtain the additional groups.- Returns:
- value for this field, never null.
 
 - 
getHasMorepublic boolean getHasMore() Is true if there are additional groups that have not been returned yet. An additional call toDbxTeamTeamRequests.groupsListContinue(String)can retrieve them.- Returns:
- value for this field.
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- java.lang.Object
 
 - 
equalspublic boolean equals(java.lang.Object obj) - Overrides:
- equalsin class- java.lang.Object
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 - 
toStringMultilinepublic java.lang.String toStringMultiline() Returns a String representation of this object formatted for easier readability.The returned String may contain newlines. - Returns:
- Formatted, multiline String representation of this object
 
 
- 
 
-