public class ListTeamAppsResult extends Object
DbxTeamTeamRequests.linkedAppsListTeamLinkedApps(String)
.Modifier and Type | Field and Description |
---|---|
protected List<MemberLinkedApps> |
apps |
protected String |
cursor |
protected boolean |
hasMore |
Constructor and Description |
---|
ListTeamAppsResult(List<MemberLinkedApps> apps,
boolean hasMore)
Information returned by
DbxTeamTeamRequests.linkedAppsListTeamLinkedApps(String) . |
ListTeamAppsResult(List<MemberLinkedApps> apps,
boolean hasMore,
String cursor)
Information returned by
DbxTeamTeamRequests.linkedAppsListTeamLinkedApps(String) . |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
List<MemberLinkedApps> |
getApps()
The linked applications of each member of the team
|
String |
getCursor()
Pass the cursor into
DbxTeamTeamRequests.linkedAppsListTeamLinkedApps(String) to receive the
next sub list of team's applications. |
boolean |
getHasMore()
If true, then there are more apps available.
|
int |
hashCode() |
String |
toString() |
String |
toStringMultiline()
Returns a String representation of this object formatted for easier
readability.
|
protected final List<MemberLinkedApps> apps
protected final boolean hasMore
protected final String cursor
public ListTeamAppsResult(List<MemberLinkedApps> apps, boolean hasMore, String cursor)
DbxTeamTeamRequests.linkedAppsListTeamLinkedApps(String)
.apps
- The linked applications of each member of the team. Must not
contain a null
item and not be null
.hasMore
- If true, then there are more apps available. Pass the
cursor to DbxTeamTeamRequests.linkedAppsListTeamLinkedApps(String)
to retrieve
the rest.cursor
- Pass the cursor into DbxTeamTeamRequests.linkedAppsListTeamLinkedApps(String)
to receive
the next sub list of team's applications.IllegalArgumentException
- If any argument does not meet its
preconditions.public ListTeamAppsResult(List<MemberLinkedApps> apps, boolean hasMore)
DbxTeamTeamRequests.linkedAppsListTeamLinkedApps(String)
.
The default values for unset fields will be used.
apps
- The linked applications of each member of the team. Must not
contain a null
item and not be null
.hasMore
- If true, then there are more apps available. Pass the
cursor to DbxTeamTeamRequests.linkedAppsListTeamLinkedApps(String)
to retrieve
the rest.IllegalArgumentException
- If any argument does not meet its
preconditions.public List<MemberLinkedApps> getApps()
null
.public boolean getHasMore()
DbxTeamTeamRequests.linkedAppsListTeamLinkedApps(String)
to retrieve the
rest.public String getCursor()
DbxTeamTeamRequests.linkedAppsListTeamLinkedApps(String)
to receive the
next sub list of team's applications.null
if not present.public String toStringMultiline()
The returned String may contain newlines.