public class ListTeamDevicesResult
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
protected java.lang.String |
cursor |
protected java.util.List<MemberDevices> |
devices |
protected boolean |
hasMore |
Constructor and Description |
---|
ListTeamDevicesResult(java.util.List<MemberDevices> devices,
boolean hasMore)
None
|
ListTeamDevicesResult(java.util.List<MemberDevices> devices,
boolean hasMore,
java.lang.String cursor) |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getCursor()
Pass the cursor into
DbxTeamTeamRequests.devicesListTeamDevices(com.dropbox.core.v2.team.ListTeamDevicesArg)
to receive the next sub list of team's devices. |
java.util.List<MemberDevices> |
getDevices()
The devices of each member of the team.
|
boolean |
getHasMore()
If true, then there are more devices available.
|
int |
hashCode() |
java.lang.String |
toString() |
java.lang.String |
toStringMultiline()
Returns a String representation of this object formatted for easier
readability.
|
protected final java.util.List<MemberDevices> devices
protected final boolean hasMore
protected final java.lang.String cursor
public ListTeamDevicesResult(java.util.List<MemberDevices> devices, boolean hasMore, java.lang.String cursor)
devices
- The devices of each member of the team. Must not contain
a null
item and not be null
.hasMore
- If true, then there are more devices available. Pass the
cursor to DbxTeamTeamRequests.devicesListTeamDevices(com.dropbox.core.v2.team.ListTeamDevicesArg)
to
retrieve the rest.cursor
- Pass the cursor into DbxTeamTeamRequests.devicesListTeamDevices(com.dropbox.core.v2.team.ListTeamDevicesArg)
to receive the next sub
list of team's devices.java.lang.IllegalArgumentException
- If any argument does not meet its
preconditions.public ListTeamDevicesResult(java.util.List<MemberDevices> devices, boolean hasMore)
The default values for unset fields will be used.
devices
- The devices of each member of the team. Must not contain
a null
item and not be null
.hasMore
- If true, then there are more devices available. Pass the
cursor to DbxTeamTeamRequests.devicesListTeamDevices(com.dropbox.core.v2.team.ListTeamDevicesArg)
to
retrieve the rest.java.lang.IllegalArgumentException
- If any argument does not meet its
preconditions.public java.util.List<MemberDevices> getDevices()
null
.public boolean getHasMore()
DbxTeamTeamRequests.devicesListTeamDevices(com.dropbox.core.v2.team.ListTeamDevicesArg)
to retrieve the rest.public java.lang.String getCursor()
DbxTeamTeamRequests.devicesListTeamDevices(com.dropbox.core.v2.team.ListTeamDevicesArg)
to receive the next sub list of team's devices.null
if not present.public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.String toStringMultiline()
The returned String may contain newlines.